我有一个名为sr_run_batch.sh的bash脚本,它可以对图像进行超分辨率处理。现在,我想同时在不同的服务器上并行进行测试。即。1虚拟机在给定的时间点。然后,两个虚拟机在一个时间点,3,然后4。
for host in $(cat hosts.txt); do ssh "$host" "$command" >"output.$host"; done
ssh-keygen && for host in $(cat hosts.txt); do ssh-copy-id $host; done文件hosts.txt包含服务器列表:username@ip(格式),但当我运行此文件时,它会给出替换错误
因此,我尝试了pssh (并行-ssh)。
pssh -h hosts-file -l username -P $command命令为./sr_run_batch.sh
但是它没有运行,所以我把它修改为
pssh -h hosts-file -l ben -P -I<./sr_run_batch.sh但是,由于一些未知的原因,它只是在代码中打印echo语句。以下是代码:
NList=(5)
VList=(1)
FList=("input/flower1.jpg" "input/flower2.jpg" "input/flower3.jpg" "input/flower4.jpg")
IList=("320X240" "640X480" "1280X960" "1920X1200")
SList=(2 3)
for VM in ${VList[@]}; do
for ((index=0; index < ${#FList};)) do
file=$FList[$index]
image_size=$IList[$index]
width=`echo $image_size|cut -d "X" -f1`
height=`echo $image_size|cut -d "X" -f2`
for scale_factor in ${SList[@]}; do
for users in ${NList[@]}; do
echo "V: $VM, " "F: $file, " "S: $scale_factor, " "I: $width $height , " "N: $users"
for i in `seq 1 $users` ; do
./sr_run_once.sh $file $width $height $scale_factor &
done
wait
done # for users
done # for scale_factor
done # for index
done # for VM
exit 0发布于 2014-12-31 10:08:50
您是否也尝试过在一个简单的bash脚本中使用pssh,那么看看通信设置是否正常?
$ pssh -h hosts.txt -A -l ben -P -I<./uptime.sh
Warning: do not enter your password if anyone else has superuser
privileges or access to your account.
Password:
10.0.0.67: 11:06:50 up 28 min, 2 users, load average: 0.00, 0.00, 0.00
[1] 11:06:50 [SUCCESS] 10.0.0.67
10.0.0.218: 11:06:50 up 24 min, 2 users, load average: 0.00, 0.05, 0.20
[2] 11:06:50 [SUCCESS] 10.0.0.218https://stackoverflow.com/questions/27718501
复制相似问题