1、下载压缩包地址
https://archive.apache.org/dist/zookeeper/
2、解压
[wyl@linux cluster]$ tar -xf zookeeper-3.4.10.tar.gz
3、创建数据目录
[wyl@linux zookeeper-3.4.10]$ mkdir data/
4、修改zoo.cfg的数据目录
[wyl@linux conf]$ cp zoo_sample.cfg zoo.cfg
[wyl@linux conf]$ vim zoo.cfg
[wyl@linux data]$ pwd
/home/wyl/cluster/zookeeper-3.4.10/data
5、启动zookeeper
[wyl@linux zookeeper-3.4.10]$ bin/zkServer.sh start
6、关闭zookeeper
[wyl@linux zookeeper-3.4.10]$ bin/zkServer.sh stop