Windows环境下Zookeeper安装配置

Windows环境下安装Zookeeper

配置JDK

Zookeeper启动需要依赖JDK环境,可以参考:Java之JDK配置

下载解压

下载地址:https://downloads.apache.org/zookeeper/

解压到合适的地址,我这边解压到:D:\softs\zookeeper-3.4.13

配置文件

进入D:\softs\zookeeper-3.4.13\conf目录下,Zookeeper已经提供了zoo_sample.cfg文件提供参考示例,我们复制一份命名为zoo.cfg,配置文件修改如下:注意dataDir和dataLogDir根据实际情况修改即可。

# The number of milliseconds of each tick
# Zookeeper 服务之间或客户端与服务器之间维持心跳的时间间隔,每个tickTime时间就会发送一个心跳,以毫秒为单位
tickTime=2000

# The number of ticks that the initial 
# synchronization phase can take
# Leader-Follower 初始通信时限
# 集群中的 follower 服务器(F)与 leader 服务器(L)之间初始连接时能容忍的最多心跳数(tickTime 的数量)。
initLimit=10

# The number of ticks that can pass between 
# sending a request and getting an acknowledgement
# Leader-Follower 同步通信时限
# 集群中的 follower 服务器与 leader 服务器之间请求和应答之间能容忍的最多心跳数(tickTime的数量)。
syncLimit=5

# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
# 根据实际情况修改 dataDir保存数据,dataLogDir保存日志文件
dataDir=D:\\softs\\zookeeper-3.4.13\\datas 
dataLogDir=D:\\softs\\zookeeper-3.4.13\\logs

# the port at which the clients will connect
# 客户端连接端口 Zookeeper会监听这个端口,接受客户端的访问请求
clientPort=2181

# the maximum number of client connections.
# increase this if you need to handle more clients
# 允许客户端连接的最大数量
#maxClientCnxns=60
#
# 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=1

启动测试

至此配置完成,进入bin目录,执行zkserver.cmd即可启动服务端。

启动后将自动生成dataslogs目录。

测试连接:同样在bin目录下,执行zkCli.md启动客户端,出现Welcome to Zookeeper就代表启动成功啦。

参考

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值