你好,我正在尝试在集群环境中设置Zookeeper。为此,我将zoo.cfg设置为:
tickTime=2000 # REQUIRED - This will be the basis of timing
events (milliseconds)
initLimit=5 # REQUIRED - Amount of ticks in initialization
syncLimit=2 # REQUIRED - Amount of ticks to determine if node is still connected
dataDir=/var/lib/zookeeper # REQUIRED - Where to store zookeeper sync data
clientPort=2181 # REQUIRED - Port which clients connect to
server.1=0.0.0.0:2888:3888 # or "0.0.0.0:2888:3888" if server.1 is the current node
server.2=server2host:2888:3888 # or "0.0.0.0:2888:3888" if server.2 is the current node
server.3=server3host:2888:3888 # or "0.0.0.0:2888:3888" if server.N is the current node当尝试启动当前节点的前台时,例如1,我得到了错误:
if server.1 is the current node does not have the form host:port
or host:port:portor host:port:port:type但我相信当前的节点看起来没问题。有没有人能指点一下这里丢失的东西。
-V
发布于 2016-12-26 13:25:52
好的,我弄明白了,不知何故,评论没有被当作评论,因此启动抛出了错误,修改了
tickTime=2000
initLimit=5
syncLimit=2
dataDir=/var/lib/zookeeper
clientPort=2181
server.1=0.0.0.0:2888:3888
server.2=server2host:2888:3888
server.3=server3host:2888:3888有效!-Vaibhav
https://stackoverflow.com/questions/41326495
复制相似问题