zookeeper集群启停及状态查看脚本(linux)

Posted LG_Booker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zookeeper集群启停及状态查看脚本(linux)相关的知识,希望对你有一定的参考价值。

#! /bin/bash

case $1 in
"start")
	for i in hadoop110 hadoop111 hadoop112
	do
		echo ======$i======
		ssh $i "source /etc/profile && /opt/module/zookeeper-3.5.7/bin/zkServer.sh start"
	done
;;
"stop")
	for i in hadoop110 hadoop111 hadoop112
	do
		echo ======$i======
		ssh $i "source /etc/profile && /opt/module/zookeeper-3.5.7/bin/zkServer.sh stop"
	done
;;
"status")
	for i in hadoop110 hadoop111 hadoop112
	do
		echo ======$i======
		ssh $i "source /etc/profile && /opt/module/zookeeper-3.5.7/bin/zkServer.sh status"
	done
;;
esac

注意集群名称修改
启动传参start

停止传参stop

查看状态传参status

以上是关于zookeeper集群启停及状态查看脚本(linux)的主要内容,如果未能解决你的问题,请参考以下文章

linux安装zookeeper集群保姆教程,包括集群启停脚本

Zookeeper集群启动/停止/状态查看脚本

用shell脚本查看zookeeper集群状态

利用SSH实现分布式应用的一键安装部署

利用SSH实现分布式应用的一键安装部署

Zookeeper集群启动查看关闭脚本(用户版)