目录
ZooKeeper配置
解压安装
解压
tar -zxvf apache-zookeeper-3.5.7-bin.tar.gz -C /opt
改名
mv apache-zookeeper-3.5.7-bin zookeeper-3.5.7
在根目录下创建两个文件夹
mkdir Zlogs
mkdir Zdata
配置zoo.cfg文件,在解压后的ZooKeeper目录中找到 conf 目录,复制一份 zoo_sample.cfg 并重命名为 zoo.cfg,修改 zoo.cfg 配置文件中的以下配置项:
cp zoo_sample.cfg zoo.cfg
vim zoo.cfg
修改为
tickTime=2000
initLimit=10
syncLimit=5