如何向多个主机发送不同的命令以在Linux中运行程序

时间:2015-04-14 21:35:34

标签: linux r ssh openssh

我是R用户。我总是在校园的多台计算机上运行程序。例如,我需要运行10个不同的程序。我需要打开PuTTY 10次才能登录10台不同的计算机。并将每个程序提交给10台计算机中的每台计算机(它们的操作系统是Linux)。有没有办法登录10台不同的计算机并同时发送命令?我使用以下命令提交程序

nohup Rscript L_1_cc.R > L_1_sh.txt 

nohup Rscript L_2_cc.R > L_2_sh.txt

nohup Rscript L_3_cc.R > L_3_sh.txt

2 个答案:

答案 0 :(得分:0)

首先设置ssh,这样您就可以在不输入密码的情况下登录(如果您不知道如何,请谷歌)。然后将脚本写入ssh到每个远程主机以运行该命令。以下是一个例子。

#!/bin/bash

host_list="host1 host2 host3 host4 host5 host6 host7 host8 host9 host10"

for h in $host_list
do
    case $h in
        host1)
            ssh $h nohup Rscript L_1_cc.R > L_1_sh.txt
            ;;
        host2)
            ssh $h nohup Rscript L_2_cc.R > L_2_sh.txt
            ;;
        esac
done

这是一个非常简单的例子。您可以做得比这更好(例如,您可以将“.R”和“.txt”文件名放入变量并使用它而不是明确列出案例中的每个选项。)

答案 1 :(得分:0)

根据您的主题标签,我假设您使用ssh登录远程计算机。希望您使用的机器是基于* nix的,因此您可以使用以下脚本。如果您在Windows上,请考虑使用cygwin。

首先,阅读本文以在每个远程目标上设置公钥身份验证:http://www.cyberciti.biz/tips/ssh-public-key-based-authentication-how-to.html

这将阻止ssh在您每次登录每个目标时提示您输入密码。然后,您可以使用以下内容编写每个目标上的命令执行脚本:

#!/bin/bash

#kill script if we throw an error code during execution
set -e

#define hosts 
hosts=( 127.0.0.1 127.0.0.1 127.0.0.1)

#define associated user names for each host
users=( joe bob steve )

#counter to track iteration for correct user name
j=0

#iterate through each host and ssh into each with user@host combo
for i in ${hosts[*]}
do
  #modify ssh command string as necessary to get your script to execute properly
  #you could even add commands to transfer the file into which you seem to be dumping your results
  ssh ${users[$j]}@$i 'nohup Rscript L_1_cc.R > L_1_sh.txt'
  let "j=j+1"
done

#exit no error
exit 0

如果设置公钥认证,则只需执行脚本即可使每个远程主机执行其操作。您甚至可以考虑从文件加载用户/主机数据,以避免将该信息硬编码到阵列中。