您的位置:首页 > 运维架构 > Shell

Start cluster zookeeper in shell script

2015-07-26 10:08 453 查看
cat start-zookeeper.sh
#!bin/sh
for node in namenode01 datanode01 datanode02
do
        echo "start zookeeper at $node"
        ssh $node "source .bash_profile;zkServer.sh start"
done

pay attention to the .bash_profile;

you should set zookeeper home variable and java_home variable

or else the start will fail.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: