搜索泥称 发表于 2015-9-7 08:41:51

Start cluster zookeeper in shell script

  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.
页: [1]
查看完整版本: Start cluster zookeeper in shell script