I wrote a simple program to display &quot;hello world&quot; from each process.<br><br>When I run this (126 - my machine, 122, and 123), everything works fine:<br>[doriad@daviddoria MPITest]$ mpirun -H 10.1.2.126,10.1.2.122,10.1.2.123 hello-mpi<br>
>From process 1 out of 3, Hello World!<br>From process 2 out of 3, Hello World!<br>From process 3 out of 3, Hello World!<br><br>When I run this (126 - my machine, 122, and 125), everything works fine:<br>[doriad@daviddoria MPITest]$ mpirun -H 10.1.2.126,10.1.2.122,10.1.2.125 hello-mpi<br>
>From process 2 out of 3, Hello World!<br>From process 1 out of 3, Hello World!<br>From process 3 out of 3, Hello World!<br><br>When I run this (126 - my machine, 123, and 125), everything works fine:<br>[doriad@daviddoria MPITest]$ mpirun -H 10.1.2.126,10.1.2.123,10.1.2.125 hello-mpi<br>
>From process 2 out of 3, Hello World!<br>From process 1 out of 3, Hello World!<br>From process 3 out of 3, Hello World!<br><br><br>However, when I run this (126 - my machine, 122, 123, AND 125), I get no output at all.<br>
<br>Is there any way to check what is going on / does anyone know what that would happen? I&#39;m using OpenMPI 1.3.3<br><br>Thanks,<br><br>David<br>

