CentOS7安装ZooKeeper
下载
创建一个文件夹存放ZooKeeper,进入该文件夹后使用swet命令下载apache-zookeeper-3.7.0-bin.tar.gz(我的阿里云CentOS7服务器中使用wge命令)
1 | wget https://downloads.apache.org/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz |
解压
1 | tar -zxvf apache-zookeeper-3.7.0-bin.tar.gz |
配置
进入conf文件夹
1 | cd /root/zookeeper/apache-zookeeper-3.7.0-bin/conf/ |
复制zoo_sample.cfg到当前目录,并命令为zoo.cfg
1 | cp zoo_sample.cfg zoo.cfg |
运行
进入解压后的文件夹apache-zookeeper-3.7.0-bin
启动
1 | ./bin/zkServer.sh start |
查看状态
查看当前状态,看到下图说明启动成功
1 | ./bin/zkServer.sh status |
也进入客户端查看运行状态,看到 Welcome to Zookeeper!说明启动成功
1 | ./bin/zkCli.sh -server localhost:2181 |
停止
1 | ./bin/zkServer.sh stop |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 LeDao's Blog!
评论