zookeeper各種報錯、原因及解決方法匯總(持續更新)


[root@iZ23nn1p4mjZ zookeeper-3.4.10]# bin/zkCli.sh -server localhost:2181,localhost:2182,localhost:2183
Connecting to localhost:2181,localhost:2182,localhost:2183
log4j:WARN No appenders could be found for logger (org.apache.zookeeper.ZooKeeper).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
Welcome to ZooKeeper!
JLine support is enabled
[zk: localhost:2181,localhost:2182,localhost:2183(CONNECTING) 0] create -s /[sPacktPub]
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3
    at org.apache.zookeeper.ZooKeeperMain.processZKCmd(ZooKeeperMain.java:706)
    at org.apache.zookeeper.ZooKeeperMain.processCmd(ZooKeeperMain.java:599)
    at org.apache.zookeeper.ZooKeeperMain.executeLine(ZooKeeperMain.java:371)
    at org.apache.zookeeper.ZooKeeperMain.run(ZooKeeperMain.java:331)
    at org.apache.zookeeper.ZooKeeperMain.main(ZooKeeperMain.java:290)
[root@iZ23nn1p4mjZ zookeeper-3.4.10]# ls /

  上述問題近發生在單機三節點模式時。

ZooKeeper自定義數據日志目錄

  ZooKeeper在啟動時會將zookeeper.out輸出到當前目錄,不僅不友好,有時候可能會因為目錄權限問題引發一些不必要的麻煩。

  解決方案:設置ZOO_LOG_DIR環境變量,也可以改在shell中寫,如下:

if [ $ZOO_LOG_DIR ] ; then
export ZOO_LOG_DIR=/usr/local/zookeeper/logs
fi

if [ -z $ZOO_LOG_DIR ];then
export ZOO_LOG_DIR=/usr/local/zookeeper/logs
fi

  conf/log4j.properties中定義:

zookeeper.log.dir=/usr/local/zookeeper/logs
zookeeper.tracelog.dir=/usr/local/zookeeper/logs

  有時候在網絡變化、抖動或者服務器負載高的情況下會出現下列異常:

14:18:06.812 [main] ERROR org.apache.curator.ConnectionState - Connection timed out for connection string (127.0.0.1:2181) and timeout (5000) / elapsed (59220)
org.apache.curator.CuratorConnectionLossException: KeeperErrorCode = ConnectionLoss

  重啟應用后仍然如此,重啟zk后便自動恢復。

  最近有個奇怪的現象{20200420更新},只要連接非本地,客戶端IDEA中總是第一次連接的時候超時,第二次就成功了,每個客戶端均如此。如下:

19:51:53.245 [main] INFO  org.apache.zookeeper.ZooKeeper - Initiating client connection, connectString=xx.xx.xx.xx:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@310d05c5
19:51:58.334 [main] ERROR org.apache.curator.ConnectionState - Connection timed out for connection string (xx.xx.xx.xx:2181) and timeout (5000) / elapsed (5104)
org.apache.curator.CuratorConnectionLossException: KeeperErrorCode = ConnectionLoss
	at org.apache.curator.ConnectionState.checkTimeouts(ConnectionState.java:225) [curator-client-2.13.0.jar:?]
	at org.apache.curator.ConnectionState.getZooKeeper(ConnectionState.java:94) [curator-client-2.13.0.jar:?]
	at org.apache.curator.CuratorZookeeperClient.getZooKeeper(CuratorZookeeperClient.java:117) [curator-client-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CuratorFrameworkImpl.getZooKeeper(CuratorFrameworkImpl.java:489) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl$11.call(CreateBuilderImpl.java:740) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl$11.call(CreateBuilderImpl.java:723) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.RetryLoop.callWithRetry(RetryLoop.java:109) [curator-client-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl.pathInForeground(CreateBuilderImpl.java:720) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl.protectedPathInForeground(CreateBuilderImpl.java:484) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl.forPath(CreateBuilderImpl.java:474) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl.forPath(CreateBuilderImpl.java:454) [curator-framework-2.13.0.jar:?]
	at org.apache.curator.framework.imps.CreateBuilderImpl.forPath(CreateBuilderImpl.java:44) [curator-framework-2.13.0.jar:?]
	at com.alibaba.dubbo.remoting.zookeeper.curator.CuratorZookeeperClient.createPersistent(CuratorZookeeperClient.java:96) [classes/:1.0.17]

  連接超時時間太短,加大即可,有需求可有償解決。

 

curator KeeperErrorCode = Unimplemented異常

ZooKeeper 3.5.x

  • Curator 4.0 has a hard dependency on ZooKeeper 3.5.x
  • If you are using ZooKeeper 3.5.x there's nothing additional to do - just use Curator 4.0

ZooKeeper 3.4.x

Curator 4.0 supports ZooKeeper 3.4.x ensembles in a soft-compatibility mode. To use this mode you must exclude ZooKeeper when adding Curator to your dependency management tool.

Curator 4.0默認不支持zk 3.4,必須兼容性處理,如下:

        <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
            <version>3.4.12</version>
        </dependency>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-recipes</artifactId>
            <version>4.0.0</version>
            <!-- 4.0.0原生不兼容zk 3.4, 必須進行兼容性處理 -->
            <exclusions>
                <exclusion>
                    <groupId>org.apache.zookeeper</groupId>
                    <artifactId>zookeeper</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

  見http://curator.apache.org/zk-compatibility.html

  其他zk自身及zk與dubbo相關的異常可參見:https://www.cnblogs.com/zhjh256/p/11679639.html

2019-11-04 12:05:17,165 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@376] - Unable to read additional data from client sessionid 0x1001e6b86a30003, likely client has closed socket
2019-11-04 12:05:17,166 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1040] - Closed socket connection for client /10.2.104.6:22804 which had sessionid 0x1001e6b86a30003
2019-11-04 12:05:17,240 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@376] - Unable to read additional data from client sessionid 0x1001e6b86a30000, likely client has closed socket
2019-11-04 12:05:17,240 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1040] - Closed socket connection for client /10.2.104.6:22665 which had sessionid 0x1001e6b86a30000
2019-11-04 12:05:17,241 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@376] - Unable to read additional data from client sessionid 0x1001e6b86a30001, likely client has closed socket
2019-11-04 12:05:17,241 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1040] - Closed socket connection for client /10.2.104.6:22672 which had sessionid 0x1001e6b86a30001
2019-11-04 12:05:17,241 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@376] - Unable to read additional data from client sessionid 0x1001e6b86a30002, likely client has closed socket
2019-11-04 12:05:17,242 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@1040] - Closed socket connection for client /10.2.104.6:22673 which had sessionid 0x1001e6b86a30002
2019-11-04 12:05:47,455 [myid:] - INFO  [SessionTracker:ZooKeeperServer@354] - Expiring session 0x1001e6b86a30002, timeout of 40000ms exceeded
2019-11-04 12:05:47,456 [myid:] - INFO  [ProcessThread(sid:0 cport:2181)::PrepRequestProcessor@487] - Processed session termination for sessionid: 0x1001e6b86a30002
2019-11-04 12:05:51,456 [myid:] - INFO  [SessionTracker:ZooKeeperServer@354] - Expiring session 0x1001e6b86a30003, timeout of 40000ms exceeded
2019-11-04 12:05:51,456 [myid:] - INFO  [SessionTracker:ZooKeeperServer@354] - Expiring session 0x1001e6b86a30000, timeout of 40000ms exceeded
2019-11-04 12:05:51,456 [myid:] - INFO  [ProcessThread(sid:0 cport:2181)::PrepRequestProcessor@487] - Processed session termination for sessionid: 0x1001e6b86a30003
2019-11-04 12:05:51,457 [myid:] - INFO  [ProcessThread(sid:0 cport:2181)::PrepRequestProcessor@487] - Processed session termination for sessionid: 0x1001e6b86a30000
2019-11-04 12:05:53,456 [myid:] - INFO  [SessionTracker:ZooKeeperServer@354] - Expiring session 0x1001e6b86a30001, timeout of 40000ms exceeded
2019-11-04 12:05:53,457 [myid:] - INFO  [ProcessThread(sid:0 cport:2181)::PrepRequestProcessor@487] - Processed session termination for sessionid: 0x1001e6b86a30001

  該異常看起來和https://www.cnblogs.com/zhyg/p/11089736.html所述很像。

  zookeeper服務器日志報連接數超出:

2020-04-16 17:16:11,135 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,241 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,371 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,381 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,463 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,527 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,553 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,580 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,609 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,686 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,796 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,818 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60
2020-04-16 17:16:11,853 [myid:] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxnFactory@211] - Too many connections from /10.20.25.225 - max is 60

  該原因大概率是客戶端有連接泄露,可通過netstat -ano | grep 2181分析,如下:

[root@hs-10-20-37-72 logs]# lsof -i:2181
COMMAND   PID USER   FD   TYPE  DEVICE SIZE/OFF NODE NAME
java     2706 root   24u  IPv6   18738      0t0  TCP *:eforward (LISTEN)
java     2706 root   25u  IPv6 3786862      0t0  TCP 10.20.25.225:eforward->10.20.25.225:63464 (ESTABLISHED)
java     2706 root   26u  IPv6 4748980      0t0  TCP 10.20.25.225:eforward->10.20.25.225:59063 (ESTABLISHED)
java     2706 root   27u  IPv6 6781917      0t0  TCP 10.20.25.225:eforward->10.20.25.225:51577 (ESTABLISHED)
java     2706 root   28u  IPv6 6781920      0t0  TCP 10.20.25.225:eforward->10.20.25.225:51578 (ESTABLISHED)
java     2706 root   30u  IPv6 6784242      0t0  TCP 10.20.25.225:eforward->10.20.25.225:51880 (ESTABLISHED)
java     2706 root   31u  IPv6 6784604      0t0  TCP 10.20.25.225:eforward->10.20.25.225:51989 (ESTABLISHED)
java     2706 root   32u  IPv6 6784610      0t0  TCP 10.20.25.225:eforward->10.20.25.225:51990 (ESTABLISHED)
java     2706 root   33u  IPv6 6788885      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52069 (ESTABLISHED)
java     2706 root   34u  IPv6 4412727      0t0  TCP 10.20.25.225:eforward->10.20.25.225:12441 (ESTABLISHED)
java     2706 root   35u  IPv6 6789241      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52127 (ESTABLISHED)
java     2706 root   36u  IPv6 6789263      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52130 (ESTABLISHED)
java     2706 root   37u  IPv6 6789329      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52140 (ESTABLISHED)
java     2706 root   38u  IPv6 6789422      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52149 (ESTABLISHED)
java     2706 root   39u  IPv6 6789572      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52166 (ESTABLISHED)
java     2706 root   40u  IPv6 6789693      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52183 (ESTABLISHED)
java     2706 root   41u  IPv6 6789807      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52200 (ESTABLISHED)
java     2706 root   42u  IPv6 6789981      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52220 (ESTABLISHED)
java     2706 root   43u  IPv6 6790066      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52239 (ESTABLISHED)
java     2706 root   44u  IPv6 6790173      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52250 (ESTABLISHED)
java     2706 root   45u  IPv6 6790238      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52259 (ESTABLISHED)
java     2706 root   46u  IPv6 6790287      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52272 (ESTABLISHED)
java     2706 root   47u  IPv6 6790356      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52285 (ESTABLISHED)
java     2706 root   48u  IPv6 6790447      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52297 (ESTABLISHED)
java     2706 root   49u  IPv6 6790485      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52307 (ESTABLISHED)
java     2706 root   50u  IPv6 6790597      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52337 (ESTABLISHED)
java     2706 root   51u  IPv6 6790638      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52343 (ESTABLISHED)
java     2706 root   52u  IPv6 6790677      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52356 (ESTABLISHED)
java     2706 root   53u  IPv6 6790726      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52368 (ESTABLISHED)
java     2706 root   54u  IPv6 6790842      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52387 (ESTABLISHED)
java     2706 root   55u  IPv6 6790871      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52395 (ESTABLISHED)
java     2706 root   56u  IPv6 6790883      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52402 (ESTABLISHED)
java     2706 root   57u  IPv6 6790992      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52415 (ESTABLISHED)
java     2706 root   58u  IPv6 6791084      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52433 (ESTABLISHED)
java     2706 root   59u  IPv6 6791118      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52449 (ESTABLISHED)
java     2706 root   60u  IPv6 6791187      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52460 (ESTABLISHED)
java     2706 root   61u  IPv6 6791270      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52479 (ESTABLISHED)
java     2706 root   62u  IPv6 6791334      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52488 (ESTABLISHED)
java     2706 root   63u  IPv6 6791427      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52501 (ESTABLISHED)
java     2706 root   64u  IPv6 6791470      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52518 (ESTABLISHED)
java     2706 root   65u  IPv6 6791542      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52531 (ESTABLISHED)
java     2706 root   66u  IPv6 6791631      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52545 (ESTABLISHED)
java     2706 root   67u  IPv6 6791669      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52555 (ESTABLISHED)
java     2706 root   68u  IPv6 6791719      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52566 (ESTABLISHED)
java     2706 root   69u  IPv6 6791797      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52581 (ESTABLISHED)
java     2706 root   70u  IPv6 6791847      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52592 (ESTABLISHED)
java     2706 root   71u  IPv6 6791883      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52602 (ESTABLISHED)
java     2706 root   72u  IPv6 6791931      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52615 (ESTABLISHED)
java     2706 root   73u  IPv6 6792017      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52627 (ESTABLISHED)
java     2706 root   74u  IPv6 6792056      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52641 (ESTABLISHED)
java     2706 root   75u  IPv6 6792090      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52648 (ESTABLISHED)
java     2706 root   76u  IPv6 6792199      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52661 (ESTABLISHED)
java     2706 root   77u  IPv6 6792283      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52681 (ESTABLISHED)
java     2706 root   78u  IPv6 6792299      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52688 (ESTABLISHED)
java     2706 root   79u  IPv6 6792345      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52698 (ESTABLISHED)
java     2706 root   80u  IPv6 6792413      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52709 (ESTABLISHED)
java     2706 root   81u  IPv6 6792495      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52727 (ESTABLISHED)
java     2706 root   82u  IPv6 6792563      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52736 (ESTABLISHED)
java     2706 root   83u  IPv6 6792625      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52745 (ESTABLISHED)
java     2706 root   84u  IPv6 6792674      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52758 (ESTABLISHED)
java     2706 root   85u  IPv6 6792755      0t0  TCP 10.20.25.225:eforward->10.20.25.225:52775 (ESTABLISHED)
java     2706 root   86u  IPv6 6290356      0t0  TCP 10.20.25.225:eforward->192.168.166.145:34608 (ESTABLISHED)
java     2871 root  176u  IPv6 4748979      0t0  TCP 10.20.25.225:59063->10.20.25.225:eforward (ESTABLISHED)

  找到對應的進程和服務器。然后分析泄露,通常大概率是因為自己手寫zk相關連接和監控、而不是使用客戶端庫如curator所致。

21:12:03.568 [pool-taskSchedule-thread-54-SendThread(10.20.25.225:2181)] INFO  org.apache.zookeeper.ClientCnxn - Opening socket connection to server 10.20.25.225/10.20.25.225:2181. Will not attempt to authenticate using SASL (unknown error)
21:12:03.568 [pool-taskSchedule-thread-54-SendThread(10.20.25.225:2181)] INFO  org.apache.zookeeper.ClientCnxn - Socket connection established to 10.20.25.225/10.20.25.225:2181, initiating session
21:12:03.576 [pool-taskSchedule-thread-54-SendThread(10.20.25.225:2181)] WARN  org.apache.zookeeper.ClientCnxn - Session 0x0 for server 10.20.25.225/10.20.25.225:2181, unexpected error, closing socket connection and attempting reconnect
java.io.IOException: Connection reset by peer
	at sun.nio.ch.FileDispatcherImpl.read0(Native Method) ~[?:1.8.0_191]
	at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) ~[?:1.8.0_191]
	at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) ~[?:1.8.0_191]
	at sun.nio.ch.IOUtil.read(IOUtil.java:192) ~[?:1.8.0_191]
	at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) ~[?:1.8.0_191]
	at org.apache.zookeeper.ClientCnxnSocketNIO.doIO(ClientCnxnSocketNIO.java:68) ~[zookeeper-3.4.8.jar!/:3.4.8--1]
	at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:366) ~[zookeeper-3.4.8.jar!/:3.4.8--1]
	at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1141) [zookeeper-3.4.8.jar!/:3.4.8--1]
21:12:03.729 [pool-taskSchedule-thread-52-SendThread(10.20.25.225:2181)] INFO  org.apache.zookeeper.ClientCnxn - Opening socket connection to server 10.20.25.225/10.20.25.225:2181. Will not attempt to authenticate using SASL (unknown error)
21:12:03.730 [pool-taskSchedule-thread-52-SendThread(10.20.25.225:2181)] INFO  org.apache.zookeeper.ClientCnxn - Socket connection established to 10.20.25.225/10.20.25.225:2181, initiating session
21:12:03.730 [pool-taskSchedule-thread-52-SendThread(10.20.25.225:2181)] WARN  org.apache.zookeeper.ClientCnxn - Session 0x0 for server 10.20.25.225/10.20.25.225:2181, unexpected error, closing socket connection and attempting reconnect
java.io.IOException: Connection reset by peer
	at sun.nio.ch.FileDispatcherImpl.read0(Native Method) ~[?:1.8.0_191]
	at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) ~[?:1.8.0_191]
	at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) ~[?:1.8.0_191]
	at sun.nio.ch.IOUtil.read(IOUtil.java:192) ~[?:1.8.0_191]
	at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) ~[?:1.8.0_191]
	at org.apache.zookeeper.ClientCnxnSocketNIO.doIO(ClientCnxnSocketNIO.java:68) ~[zookeeper-3.4.8.jar!/:3.4.8--1]
	at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:366) ~[zookeeper-3.4.8.jar!/:3.4.8--1]
	at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1141) [zookeeper-3.4.8.jar!/:3.4.8--1]

 

Caused by: org.apache.zookeeper.KeeperException$OperationTimeoutException: KeeperErrorCode = OperationTimeout
at com.dangdang.ddframe.job.reg.zookeeper.ZookeeperRegistryCenter.init(ZookeeperRegistryCenter.java:102) ~[elastic-job-common-core-2.1.5.jar:?]

檢查網絡是否正常,ping/telnet看下,基本上就這一個原因。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM