Hi all, I am trying to start zookeeper in two nodes, the configuration file I have is
tickTime=2000 initLimit=10 syncLimit=5 dataDir=/var/zookeeper clientPort=2181 server.1=hec-bp1:2888:3888 server.2=hec-bp2:2888:3888 i also have two files /var/zookeeper/myid on each of the machines, the files contain 1 and 2 on each of the servers When I start, I get the following Starting zookeeper ... STARTED hec...@hec-bp2:/zookeeper$ 2009-10-01 15:48:15,786 - INFO [main:quorumpeercon...@80] - Reading configuration from: /zookeeper/bin/../conf/zoo.cfg 2009-10-01 15:48:15,882 - INFO [main:quorumpeercon...@232] - Defaulting to majority quorums 2009-10-01 15:48:15,899 - INFO [main:quorumpeerm...@118] - Starting quorum peer 2009-10-01 15:48:15,943 - INFO [Thread-1:quorumcnxmanager$liste...@409] - My election bind port: 3888 2009-10-01 15:48:15,961 - INFO [QuorumPeer:/0:0:0:0:0:0:0:0:2181:quorump...@487] - LOOKING 2009-10-01 15:48:15,963 - INFO [QuorumPeer:/0:0:0:0:0:0:0:0:2181:fastleaderelect...@579] - New election: -1 2009-10-01 15:48:15,978 - WARN [WorkerSender Thread:quorumcnxmana...@336] - Cannot open channel to 1 at election address hec-bp1.admin.nimblestorage.com/10.12.6.192:3888 java.net.NoRouteToHostException: No route to host at sun.nio.ch.Net.connect(Native Method) at sun.nio.ch.SocketChannelImpl.connect(Unknown Source) at java.nio.channels.SocketChannel.open(Unknown Source) at org.apache.zookeeper.server.quorum.QuorumCnxManager.connectOne(QuorumCnxManager.java:323) at org.apache.zookeeper.server.quorum.QuorumCnxManager.toSend(QuorumCnxManager.java:302) at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.process(FastLeaderElection.java:323) at org.apache.zookeeper.server.quorum.FastLeaderElection$Messenger$WorkerSender.run(FastLeaderElection.java:296) at java.lang.Thread.run(Unknown Source) 2009-10-01 15:48:15,981 - INFO [QuorumPeer:/0:0:0:0:0:0:0:0:2181:fastleaderelect...@618] - Notification: 2, -1, 1, 2, LOOKING, LOOKING, 2 2009-10-01 15:48:15,981 - INFO [QuorumPeer:/0:0:0:0:0:0:0:0:2181:fastleaderelect...@642] - Adding vote 2009-10-01 15:48:16,184 - WARN [QuorumPeer:/0:0:0:0:0:0:0:0:2181:quorumcnxmana...@336] - Cannot open channel to 1 at election address hec-bp1.admin.nimblestorage.com/10.12.6.192:3888 I can expect these kind of messages when the other server hasn't been started, but even after a while keeps sending these messages. I can ping and ssh between the machines. I noticed that just port 3888 is listening when I do netstat -an, why is port 2888 not being used? Any ideas? Thanks -h