首页 > 代码库 > ZooKeeper 在windows的安装
ZooKeeper 在windows的安装
写这篇随笔的原因是公司项目用到了dubbo框架,需要安装zookeeper,故查询了一些文章,同时将安装zookeeper的步骤记录下来,感谢提供资料的博友,在文章最后具体感谢。
1、概述
ZooKeeper的目标就是封装好复杂易出错的关键服务,将简单易用的接口和性能高效、功能稳定的系统提供给用户。
2、安装与配置
(2)安装:将下载的包解压放在自己相放的地方,比如:D:\Program Files (x86)\zookeeper-3.4.8
(3)修改配置,路径是D:\Program Files (x86)\zookeeper-3.4.8\conf:
a、conf下增加一个zoo.cfg
b、文件内容
# 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=D:\\data\\zookeeper
#日志位置
dataLogDir=D:\\logs\\zookeeper
# the port at which the clients willconnect 客户端连接的端口
clientPort=2181
(3)启动
启动命令在D:\Program Files (x86)\zookeeper-3.4.8\bin 中
这样zookeeper 算是安装成功了
需要感谢http://blog.csdn.net/morning99/article/details/40426133提供的参考文章
ZooKeeper 在windows的安装