更新时间:2021-10-06 来源:黑马程序员 浏览量:
为了方便将来进行一键启动、关闭Kafka,我们可以编写一个shell脚本来操作。将来只要执行一次该脚本就可以快速启动/关闭Kafka。
1. 在节点1中创建 /export/onekey 目录
cd /export/onekey
2. 准备slave配置文件,用于保存要启动哪几个节点上的kafka
node1.itcast.cnnode2.itcast.cnnode3.itcast.cn
3. 编写start-kafka.sh脚本
vim start-kafka.shcat /export/onekey/slave | while read linedo{ echo $line ssh $line "source /etc/profile;export JMX_PORT=9988;nohup ${KAFKA_HOME}/bin/kafka-server-start.sh ${KAFKA_HOME}/config/server.properties >/dev/nul* 2>&1 & "}&waitdone
4.编写stop-kafka.sh脚本
vim stop-kafka.shcat /export/onekey/slave | while read linedo{ echo $line ssh $line "source /etc/profile;jps |grep Kafka |cut -d' ' -f1 |xargs kill -s 9"}&waitdone
5. 给start-kafka.sh、stop-kafka.sh配置执行权限
chmod u+x start-kafka.shchmod u+x stop-kafka.sh
6. 执行一键启动、一键关闭
./start-kafka.sh./stop-kafka.sh
猜你喜欢: