shell脚本(查看多台服务器端口)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本(查看多台服务器端口)相关的知识,希望对你有一定的参考价值。
【xcall.sh】
#!/bin/bash
hosts=`cat /soft/hadoop/etc/hadoop/slaves`
tput setaf 2
echo =============localhost==================
tput setaf 7
$params
for host in $hosts ; do
tput setaf 2
echo =============$host===========================
tput setaf 7
ssh -4 $host "source /etc/profile ; $params"
done
以上是关于shell脚本(查看多台服务器端口)的主要内容,如果未能解决你的问题,请参考以下文章