代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
# ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
# Function :CentOS7.X 批量(drds服务器组内) 执行 命令
# Platform :RedHatEL7.x Based Platform
# Version :1.01
# Date :2021-08-04
# Author :mugoLH
# Contact :houxiaoshuai@baidu.com & hxsaj@126.com
# ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
# 变量列表 List of common variables
# ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
# 注意 egrep "mp|node" /etc/hosts 是在/etc/hosts中遍历查询获得服务器列表,所以服务器名字修改,需要修改egrep "mp|node" 中的"mp|node"
# 主机名列表
HostList=$(egrep "drds|node" /etc/hosts |grep -v "^#" |awk '{print$2}')
# 函数列表 Function list
# ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
info_p(){ printf "\e[1;35;40m%-8s %-20s %-24s %-2s %-2s\n\e[0m" "$(date '+%H:%M:%S')" "${1}" "${2}" "${3}" "${4}" >&1 ;}
# 如果参数为空,则退出
if [ $# -eq 0 ];then
exit
else
# 循环远程执行命令
for i in ${HostList[@]};do
HostIp=$(grep ${i} /etc/hosts | awk '{print$1}')
info_p "节点:${i}" "IP:${HostIp}" "# $@ "
ssh ${i} "$@"
echo ""
done
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。