繁体   English   中英

如何使用bash脚本在远程linux服务器上运行多个命令

[英]how to run multiple commands on a remote linux server using bash script

我目前正在编写以下脚本,该脚本登录到远程服务器并运行几个命令来验证服务器的性能,并根据这些命令的输出打印消息。但是ssh不起作用并返回的统计信息而是托管脚本的服务器。

脚本

#!/bin/bash
#######################
#Function to add hosts to the array
#the following function takes the ip addresses provided while the       script is run and stores them in an array
#######################
Host_storing_func () {
  HOST_array=()
  for i in $@ ;do
    HOST_array+=(${i});
  done
  #echo ${HOST_array[*]}
}

#######################
#Calling above function
#######################
Host_storing_func "$@"

############################################################
#Collect Stats of Ping,memory,iowait time test function
############################################################
b=`expr ${#HOST_array[*]} - 1 `
for i in `seq 0 $b` ;do
  sshpass -f /root/scripts/passwordFile.txt /usr/bin/ssh  student35@${HOST_array[${i}]}   <<   HERE
    echo `hostname`
    iowaittm=`sar 2 2|awk '/^Average/{print $5};'`
    if [ $iowaittm > 10 ];then
     echo "IO ==> BAD"
    else
     echo "IO ==> GOOD"
    fi
    memoryy=`free -m |grep Swap|awk '{if($2 == 0) print 0;else print (($4 /  $2 ) * 100)}'`
    if [ ${memoryy} < '10' ] ;then
     echo "memory ==> good"
    elif [[ "${memory}" -ge 0 ]] && [[ "${memory}" -le 10 ]];then
     echo "No Swap"
    else
     echo "memory ==> bad"`enter code here`
    fi
    ping -w2 -c2 `hostname` | grep "packet loss"|awk -F, '{print $3}'|awk -F% '{print $1}'|sed 's/^ *//'|awk '{if ($1 == 0) print "Yes" ;else print "No"}'
    HERE
done

输出:oc5610517603.XXX.com是源服务器的名称

[root@oc5610517603 scripts]# ./big_exercise.sh 9.XXX.XXX.XXX 9.XXX.XXX.XXX
Pseudo-terminal will not be allocated because stdin is not a terminal.
oc5610517603.XXX.com 
IO ==> GOOD
No Swap
ping: oc5610517603.ibm.com: Name or service not known
Pseudo-terminal will not be allocated because stdin is not a terminal.
oc5610517603.XXX.com
IO ==> GOOD
No Swap
ping: oc5610517603.XXX.com: Name or service not known

谢谢你检查脚本,我找到了解决问题的方法

这是导致问题的sshpass命令,如果你想在HEREdoc中使用变量,你只需将开头的HERE放在单引号中,但如果变量是在ssh之前计算的,那么你不必在这里打开单引号

sshpass -f /root/scripts/passwordFile.txt / usr / bin / ssh -T student35 @ $ {i} <<'HERE'

在我更改了sshpass命令后,我的脚本工作了

我稍微修改了你的脚本。

正如@chepner所建议的那样,我没有使用Host_storing_func。 对于sshpaas的Heredocs有些棘手。 你必须逃避heredoc中的所有后退和$符号。

注意 - 在heredoc开始之前,它允许你缩进heredoc体。 此外,尽可能避免反向滴答。 请改用$(命令)。

希望能帮助到你。

#!/bin/bash
#######################
#Function to add hosts to the array
#the following function takes the ip addresses provided while the       script is run and stores them in an array
#######################
array=( "$@" )
user="student35"

############################################################
#Collect Stats of Ping,memory,iowait time test function
############################################################

for host in ${array[@]}; do
    sshpass -f /root/scripts/passwordFile.txt /usr/bin/ssh -l ${user} ${host}  <<-HERE
    thishost=\$(hostname)
    echo "Current Host -> \$thishost";
    iowaittm=\`sar 2 2|awk '/^Average/{print \$5}'\`
    if [ \$iowaittm > 10 ]; then
        echo "IO ==> BAD"
    else
        echo "IO ==> GOOD"
    fi
    memory=\$(free -m | grep Swap | awk '{if(\$2 == 0) print 0;else print ((\$4 /  \$2 ) * 100)}')
    if [ \${memory} < '10' ] ;then
        echo "memory ==> good"
    elif [[ "\${memory}" -ge 0 ]] && [[ "\${memory}" -le 10 ]]; then
        echo "No Swap"
    else
        echo "memory ==> bad"\`enter code here\`
    fi
    ping -w2 -c2 \`hostname\` | grep "packet loss"|awk -F, '{print \$3}'|awk -F% '{print \$1}'|sed 's/^ *//'|awk '{if (\$1 == 0) print "Yes" ;else print "No"}'
    HERE
done

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM