windows环境下的zookeeper安装和使用

本文详细介绍Zookeeper的安装步骤及配置过程,包括环境搭建、配置文件修改等内容,并分享了解决安装过程中遇到的问题的方法。

由于最近项目要用到zookeeper和dubbo 之前没接触过,所以也是不断的在学习中

zookeeper安装成功,亲测!   

先去官网下载, 我的版本是3.3.6

 

      解压到指定目录下    E:\zookeeper-3.4.8
      修改zoo_sample.cfg 文件名(E:\zookeeper-3.4.8\conf) 为 zoo.cfg,备份一份
      主要修改一下日志位置,具体配置文件如下:
[html]  view plain  copy
  1. # The number of milliseconds of each tick  
  2. tickTime=2000  
  3. # The number of ticks that the initial   
  4. # synchronization phase can take  
  5. initLimit=10  
  6. # The number of ticks that can pass between   
  7. # sending a request and getting an acknowledgement  
  8. syncLimit=5  
  9. # the directory where the snapshot is stored.  
  10. # do not use /tmp for storage, /tmp here is just   
  11. # example sakes.  
  12. dataDir=D:\\zookeeper\\data  
  13. dataLogDir=D:\\zookeeper\\log  
  14. # the port at which the clients will connect  
  15. clientPort=2181  
  16. # the maximum number of client connections.  
  17. # increase this if you need to handle more clients  
  18. #maxClientCnxns=60  
  19. #  
  20. # Be sure to read the maintenance section of the   
  21. # administrator guide before turning on autopurge.  
  22. #  
  23. # http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance  
  24. #  
  25. # The number of snapshots to retain in dataDir  
  26. #autopurge.snapRetainCount=3  
  27. # Purge task interval in hours  
  28. # Set to "0" to disable auto purge feature  
  29. #autopurge.purgeInterval=1  
配置文件简单解析
1、tickTime:这个时间是作为 Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。
2、dataDir:顾名思义就是 Zookeeper 保存数据的目录,默认情况下,Zookeeper 将写数据的日志文件也保存在这个目录里。
3、dataLogDir:顾名思义就是 Zookeeper 保存日志文件的目录
4、clientPort:这个端口就是客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。

进入到bin目录,并且启动zkServer.cmd,这个脚本中会启动一个java进程

启动后jps可以看到QuorumPeerMain的进程


也可以启动客户端连接一下


OK,

如果启动zkServer闪退  编辑一下 ,在最后面加上pause 在启动看看是什么错误信息, 一般情况下是在安装目录下新建两个文件夹

data和log文件夹  就是zoo.cfg里面的配置对应的文件夹名称,我就是这个原因, 之前百度都不好使,   突发奇想  建了这两个文件夹 运行正常   



评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值