Windows|Windows 安装 ZooKeeper 和使用
1. 下载zookeeper 官方版本为:3.4.11
【Windows|Windows 安装 ZooKeeper 和使用】下载地址:2.安装
http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz
解压zookeeper-3.4.11.tar.gz到C:\zookeeper-3.4.113.修改配置文件
在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=C:\\zookeeper-3.4.11\\data
dataLogDir=C:\\zookeeper-3.4.11\\log
# 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
配置文件简单解析4.启动
1、tickTime:这个时间是作为 Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个 tickTime 时间就会发送一个心跳。
2、dataDir:顾名思义就是 Zookeeper 保存数据的目录,默认情况下,Zookeeper 将写数据的日志文件也保存在这个目录里。
3、dataLogDir:顾名思义就是 Zookeeper 保存日志文件的目录
4、clientPort:这个端口就是客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。
进入C:\zookeeper-3.4.11\bin目录,运行zkServer.cmd
文章图片
运行目录.png
文章图片
运行成功.png
推荐阅读
- ubuntu16.04安装matlab2016a步骤详解
- Python实现Windows弹出微信消息通知(可显示发送人和消息内容)
- Windows|Windows Server 2019 取消默认IE 浏览器安全增强配置的步骤
- windows|windows server 2019 服务器配置的方法步骤(大图版)
- Tensorflow可视化编程
- 微信多开下载安装使用及更新方式
- 【小白必看】Redis手把手教你从零开始下载到安装,再到配置允许图形化工具远程连接(一)
- Linux服务器VPS的Windows|Linux服务器VPS的Windows DD包详细的制作教程
- ClickHouse|ClickHouse单机和集群安装及图形化工具Tabix
- 【超详细】Apache Durid从入门到安装详细教程