您好,登錄后才能下訂單哦!
kafka集群每次啟動都需要登錄多臺服務器操作,比較麻煩,安裝了一個批量管理工具pssh,配置了ssh免秘鑰登錄,寫了一個簡單的shell腳本方便日常的批量啟動、關閉操作。
[root@kafka1 ~]# cat /usr/local/kafka/bin/kafka-daemons.sh #!/bin/bash #kafka start stop #date 2020.03.07 ########################### #[root@kafka1 ~]# cat /root/khost.txt #192.168.180.21 #192.168.180.22 #192.168.180.23 #三臺主機配置ssh免秘鑰 function zookeeper_start(){ pssh -h khost.txt -i zkServer.sh start sleep 5 pssh -h khost.txt -i jps } function zookeeper_stop(){ pssh -h khost.txt -i zkServer.sh stop sleep 5 pssh -h khost.txt -i jps } function zookeeper_status(){ pssh -h khost.txt -i zkServer.sh status } function kafka_start(){ pssh -h khost.txt -i kafka-server-start.sh -daemon /usr/local/kafka/config/server.properties sleep 5 pssh -h khost.txt -i jps } function kafka_stop(){ pssh -h khost.txt -i kafka-server-stop.sh sleep 5 pssh -h khost.txt -i jps } function kafka_status(){ pssh -h khost.txt -i jps } echo -e "[1] start zookeeper [2] stop zookeeper [3] status zookeeper [4] start kafka [5] stop kafka [6] status kafka " read -p "please input install servers[1]|[2]|[3]|[4]|[5]|[6]|:" server_s case $server_s in 1) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) zookeeper_start ;; *) exit esac ;; 2) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) zookeeper_stop ;; *) exit esac ;; 3) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) zookeeper_status ;; *) exit esac ;; 4) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) kafka_start ;; *) exit esac ;; 5) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) kafka_stop ;; *) exit esac ;; 6) read -p "Please confirm your input [yes]:" confirm case $confirm in yes|YES|YEs|yEs|yeE) kafka_status ;; *) exit esac ;; *) echo -e "\033[32;1m please input start or stop servers[1]|[2]|[3]|[4]|[5]|[6]!!!\033[0m" exit esac
添加腳本的執行權限
[root@kafka1 ~]# chmod 755 /usr/local/kafka/bin/kafka-daemons.sh
啟動zookeeper
啟動kafka
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。