也许我的问题不是那么具体,以下是细节
我有20台机器,其中OS
是Linux
,我想使用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台机器上的所有服务。我该怎么做才能解决这个问题?