Window下安装zookeeper
Window下安装zookeeper
目录
- 下载zookeeper
- 解压以及常见坑
- 运行以及常见坑
- 使用测试
1、下载zookeeper
- 官网地址
https://zookeeper.apache.org/
- 从国内开源网站下载镜像,例如:清华大学开源软件镜像站 | Tsinghua Open Source Mirror
https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper
2、解压
坑1:解压提示某些文件已存在
应该是因为压缩软件不支持解压tar.gz压缩包,可以在 windows 系统上 如下操作即可
1、打开Windows上的Linux环境。即Windows PowerShell
2、执行解压:tar -zxvf .\apache-zookeeper-3.6.3-bin.tar.gz
3、运行
执行bin目录下 zkServer.cmd
坑2:执行闪退
编辑zkServer.cmd文件末尾添加pause 。这样运行出错就不会退出,会提示错误信息,方便找到原因。
添加后得知是缺少zoo.cfg配置文件;
进入conf目录,发现存在zoo_sample.cfg ,其实我们要做的就是复制它作为一个新的文件,命名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 an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=/tmp/zookeeper
# the port at which the clients will connect
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
## Metrics Providers
#
# https://prometheus.io Metrics Exporter
#metricsProvider.className=org.apache.zookeeper.metrics.prometheus.PrometheusMetricsProvider
#metricsProvider.httpPort=7000
#metricsProvider.exportJvmInfo=true
该文件中常用的例如注册中心端口号。
修改后再次运行,出现ZooKeeper audit is disabled,修改zkServer.cmd 添加
"-Dzookeeper.audit.enable=true"
或zoo.cfg新增一行
audit.enable=true
再次打开 OK。
4、测试
打开里面的客户端 zkCli.cmd 测试:
测试一下:
[zk: localhost:2181(CONNECTED) 0] ls /
[zookeeper]
[zk: localhost:2181(CONNECTED) 1] create -e /hwl
Created /hwl
[zk: localhost:2181(CONNECTED) 2] ls /
[hwl, zookeeper]
[zk: localhost:2181(CONNECTED) 3] get /hwl
null
[zk: localhost:2181(CONNECTED) 4] set /hwl hello
[zk: localhost:2181(CONNECTED) 5] ls /
[hwl, zookeeper]
[zk: localhost:2181(CONNECTED) 6] get /hwl
hello
OK的。
分类:
架构-分布式
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端