如何使用shell或其他命令操作机器群集

时间:2015-10-08 09:33:07

标签: linux shell

也许我的问题不是那么具体,以下是细节

我有20台机器,其中OSLinux,我想使用Python的软件包实现Parallel Computing,如果你不知道那个软件包,那没关系。< / p>

我想将一个名为start.file的文件发送到所有计算机,每台计算机都应该运行一个命令来启动Parallel Computing服务。例如:

machine_1 $ my_command start.file
service started ...
machine_2 $ my_command start.file
service started ...
machine_3 $ my_command start.file
service started ...
...
machine_19 $ my_command start.file
service started ...
machine_20 $ my_command start.file
service started ...

所有命令都相同,即my_command,所有start.files都相同。 start.file在我的本地主机上,由于scp命令不方便,我想找到更好的方法将start.file转移到所有20台机器上。

我想找到一种更自动化的方式来启动所有20台机器上的所有服务。我该怎么做才能解决这个问题?

0 个答案:

没有答案