Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以访问几台机器(机器0、机器等)。他们都可以访问可执行文件和一系列输入文件,有没有办法使用 bash 通过 ssh 运行作业,这样我就不必 ssh 进入每台机器并单独运行每台机器?干杯,杰克
在您的主机上设置无密码身份验证,然后让您的 bash 脚本通过 ssh ( ssh user@remote <command>) 调用您的二进制文件/脚本。
ssh user@remote <command>
如果您有大量的作业要运行和管理,您可能需要安装一个作业调度程序,例如Slurm或Condor,这样您就不必担心在何时何地运行您的作业。