1. 下载zookeeper安装包,解压后copy3份,分别命名为zookeeper1, zookeeper2, zookeeper3
2. 进入每个节点zookeeper/conf 目录下新建 zoo.cfg文件
输人以下内容:
# The number of milliseconds of each ticktickTime=2000# The number of ticks that the initial # synchronization phase can takeinitLimit=10# The number of ticks that can pass between # sending a request and getting an acknowledgementsyncLimit=5# the directory where the snapshot is stored.# do not use /tmp for storage, /tmp here is just # example sakes. 集群时需做调整dataDir=E:/bigData/zookeeper/zookeeper1/data# the port at which the clients will connect 集群时需做调整clientPort=2181## Be sure to read the maintenance section of the # administrator guide before turning on autopurge.## http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance## The number of snapshots to retain in dataDir#autopurge.snapRetainCount=3# Purge task interval in hours# Set to "0" to disable auto purge feature#autopurge.purgeInterval=1server.0=127.0.0.1:2888:3888server.1=127.0.0.1:2888:3888
server.2=127.0.0.1:2888:3888
3.在每个节点下新建zookeeper/data/myid文件
输入如下内容:(与文件号对应,为集群中的标识)
1
4. 分别启动每个 zookeeper
启动命令为 zookeeper/bin/zkServer.cmd
