shell脚本实现同时多台远程主机执行命令的代码分享

时间:2021-05-22

实现需求

在对单台机器做操作时我们会用“ssh ip”的方式登录到机器上,可以写这样一个工具vssh ip1,ip2,…ipn 来模拟登录到n 台服务器,登录后所有操作相当于同时对n 台服务器生效。

实现方法

首页要确保可以通过本地公钥无密码登录远程主机:

ssh-copy-id [-i [identity_file]] [user@]machine

shell脚本

#!/bin/bash# -------------------------------------------------------------------------------# Author: Loya.Chen# Description: Execute commands on multiple remote hosts at the same time.# -------------------------------------------------------------------------------set -eUsage() { echo "Usage: $0 host1 host2 ... 'command'"}if [ $# -lt 2 ] ;then Usage exit 0else cmd=${!#}filogfile=$(mktemp)i=1success=0failed=0for ip in $@;do if [ $i -eq $# ];then break fi ssh $ip $cmd &> $logfile if [ $? -eq 0 ];then #((success++)) success=$(($success+1)) echo -e "\n\033[32m$ip | success \033[0m \n" cat $logfile else ((failed++)) echo -e "\n\033[31m$ip | failed \033[0m\n " cat $logfile fi ((i++))doneecho -e '\n-------------------------'echo -e "\033[32msuccess: $success | failed: $failed \033[0m"echo '-------------------------'

示例

$ bash vssh 10.0.0.11 10.0.0.12 'free -m'10.0.0.11 | success total used free shared buffers cachedMem: 2871 156 2715 0 8 36-/+ buffers/cache: 111 2760Swap: 2047 0 204710.0.0.12 | success total used free shared buffers cachedMem: 980 615 365 0 12 69-/+ buffers/cache: 533 447Swap: 2047 0 2047-------------------------success: 2 | failed: 0 -------------------------

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章