zookeeper和zkui使用介绍
linux系统安装kafka(新版本3.7.0)_kafka最新版本-CSDN博客
zookeeper的安装部署
# 下载Zookeeper
下载地址 Apache Download Mirrors
wget https://dlcdn.apache.org/zookeeper/zookeeper-3.7.2/apache-zookeeper-3.7.2.tar.gz
# 解压缩
tar -xzf apache-zookeeper-3.7.0-bin.tar.gz
# 进入Zookeeper目录
cd apache-zookeeper-3.7.0-bin
# 配置Zookeeper
cp conf/zoo_sample.cfg conf/zoo.cfg
# 编辑配置文件(如果需要)
nano conf/zoo.cfg
# 启动Zookeeper服务器
bin/zkServer.sh start
# 检查Zookeeper状态
bin/zkServer.sh status