1,下载
打开连接 ;https://downloads.apache.org/zookeeper/
选择版本下载
2,解压
cmd黑窗口解压命令
tar -zxvf apache-zookeeper-3.8.3-bin
3,修改配置
复制zoo_sample.cfg,重命名为zoo.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=D:/dubboDev/apache-zookeeper-3.8.3-bin/data
dataLogDir=D:/dubboDev/apache-zookeeper-3.8.3-bin/logs
# the port at which the clients will connect
clientPort=2181
# 管理端口 default port 8080
admin.serverPort=2180
# 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.
#
# https://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.httpHost=0.0.0.0
#metricsProvider.httpPort=7000
#metricsProvider.exportJvmInfo=true
注意:手动创建data文件夹
4,启动服务
5,问题
如果双击zkServer.cmd,黑窗口闪退
先执行zkServer.sh stop
(执行图如下),再双击zkServer.cmd