:::color4 注意:需要提前配置好集群中每台服务器的主机名和IP地址的对应关系,能够互相使用主机名进行通信,并配置了SSH免密码登录。

:::

这一点不用担心,只要让运维在规划和分配服务器的时候,规划好就行了,无需后面再依次登录服务器处理。

为了方便大家理解,这里就假设集群中存在1024台服务器,每台服务器的主机名为binghe1~binghe1024。 每台服务器可以通过主机名进行通信,接下来,写了一个名称为distribute_command.sh的脚本,内容如下所示。
  1. #!/bin/bash
  2. pcount=$#
  3. if (( pcount<1 )) ; then
  4. echo no args;
  5. exit;
  6. fi
  7. #先在本机上执行命令
  8. echo ------------binghe$host-----------------
  9. $@
  10. #循环在集群中的远程节点上执行命令
  11. for (( host=1 ; host<=1024; host=host+1)) ; do
  12. echo ------------binghe$host-----------------
  13. ssh binghe$host $@
  14. done;
这个脚本的含义为:接收传递进来的命令,将命令分发到主机名为binghe1~binghe1024的服务器上执行。 也就是说,使用这个脚本能够做到:在集群中“任意”服务器上执行相同的命令。 接下来,为distribute_command.sh脚本赋予可执行权限,如下所示:
  1. chmod a+x ./distribute_command.sh
使用格式如下:
  1. ./distribute_command.sh 在服务器上执行的完整命令

使用示例

  • 在集群中的每台服务器的/home目录下创建hello.txt文,内容为hello world
  1. ./distribute_command.sh echo "hello world" >> /home/hello.txt
  • 查看集群中每台服务器上hello.txt文件的内容
  1. ./distribute_command.sh cat /home/hello.txt
  • 删除集群中每台服务器上的hello.txt文件
  1. ./distribute_command.sh rm -rf /home/hello.txt