0

我有一个使用 Windows Azure 在 linux 集群上运行 MPIRUN 的应用程序,mpirun 需要以下规范才能在我的集群中运行:

  1. 无密钥 SSH。
  2. 禁用linux的防火墙
  3. 打开 EndPionts 的所有端口,因为 mpirun 没有使用静态端口。

问题是我需要打开所有端口,但 Windows Azure 仅支持 100 端口,所以有什么方法可以在 linux 节点集群上支持 mpirun。

当我在我的 linux 集群上运行我的 mpicode 时,以下输出:

Daemon was launched on ahmed-Sate3781 - beginning to initialize
Daemon [[4241,0],2] checking in as pid 1585 on host ahmed-Sate3781
Daemon [[4241,0],2] not using static ports
Daemon was launched on ahmed-Sate3780 - beginning to initialize
Daemon [[4241,0],1] checking in as pid 1703 on host ahmed-Sate3780
Daemon [[4241,0],1] not using static ports
[ahmed-Sate3780:01703] [[4241,0],1] orted: up and running - waiting for commands

谢谢,

4

1 回答 1

1

经过调查,我发现我需要在同一个云服务或 Windows Azure 上的同一个虚拟网络中创建所有 linux 虚拟机。Azure 在同一云服务中提供 VM 以相互通信,而无需打开端口。所以 mpirun 会工作

于 2014-02-12T14:48:33.147 回答