shell脚本(查看多台服务器端口)

【xcall.sh】

#!/bin/bash

params=$@

hosts=`cat /soft/hadoop/etc/hadoop/slaves`

tput setaf 2

     echo =============localhost==================

     tput setaf 7

shell脚本(查看多台服务器端口)

     $params

for host in $hosts ; do

     tput setaf 2

     echo =============$host===========================

     tput setaf 7

     ssh -4 $host ”source /etc/profile ; $params”

done

赞(0)
未经允许不得转载:主机测评网 » shell脚本(查看多台服务器端口)
分享到: 更多 (0)