windows系统搭建zookeeper
安装&配置
在apache的官方网站提供了好多镜像下载地址,然后找到对应的版本
下载地址:
windows下安装
把下载的zookeeper的文件解压到指定目录
c:\zk\zookeeper-3.4.14>
修改conf下增加一个zoo.cfg
内容如下:
# the number of milliseconds of each tick 心跳间隔 毫秒每次
ticktime=2000
# the number of ticks that the initial
# synchronization phase can take
initlimit=10
# the number of ticks that can pass between
# sending a request and getting anacknowledgement
synclimit=5
# the directory where the snapshot isstored. //镜像数据位置
datadir=c:\\zk\\data\\zookeeper
#日志位置
datalogdir=c:\\zk\\logs\\zookeeper
# the port at which the clients willconnect 客户端连接的端口
clientport=2181
注:如果启动有报错提示cfg文件有错误,可以用zoo_sample.cfg内内容替代也是可以的
进入到bin目录,并且启动zkserver.cmd,这个脚本中会启动一个java进程
c:\zk\zookeeper-3.4.14>cd bin
c:\zk\zookeeper-3.4.14\bin>
c:\zk\zookeeper-3.4.14\bin >zkserver.cmd
启动后jps可以看到quorumpeermain的进程
c:\zk\zookeeper-3.4.14\bin >jps
启动客户端运行查看一下
c:\zk\zookeeper-3.4.14\bin>zkcli.cmd -server 127.0.0.1:2181
这个时候zookeeper已经安装成功了,
参考官方文档:
http://zookeeper.apache.org/doc/trunk/zookeeperstarted.html
参考单机模式、集群和伪集群的帖子
http://sqcjy111.iteye.com/blog/1741320
在 一台机器上通过伪集群运行时可以修改 zkserver.cmd 文件在里面加入
set zoocfg=..\conf\zoo1.cfg 这行,另存为 zkserver-1.cmd
如果有多个可以以此类推
还需要 在对应的
c:\\zk\\data\\zookeeper\\1,
c:\\zk\\data\\zookeeper\\2,
c:\\zk\\data\\zookeeper\\3
建立一个文本文件命名为myid,内容就为对应的zoo.cfg里server.后数字
参考资料:
上一篇: SQLServer 高效 分页存储过程