Re: [OMPI users] Non-root install; hang there running on multiple nodes

2010-03-25 Thread Jeff Squyres
You probably do want to check with your admin and ensure that either firewalling software is disabled or that a trust relationship is setup between the machines that you want to use. Effectively, Open MPI needs to be open random TCP ports between all the hosts that you will be using. There are

Re: [OMPI users] Non-root install; hang there running on multiple nodes

2010-03-24 Thread Trent Creekmore
: Wednesday, March 24, 2010 3:33 PM To: Open MPI Users Subject: Re: [OMPI users] Non-root install; hang there running on multiple nodes Can you mpirun non-MPI applications, like "hostname"? I frequently run this as a first step to debugging a wonky install. For example: shell$ hostname ba

Re: [OMPI users] Non-root install; hang there running on multiple nodes

2010-03-24 Thread haoanyi
I run a program with the following command line, and obtain the error message mpirun -x LD_LIBRARY_PATH=/home/haoanyi1/socIntel/goto --prefix /home/haoanyi1/openmpi1.4.1 -np 2 -host intel01,intel02 -rf hosts ./main 62 62 tests/ > newtest_64x64_np2_omp [btl_tcp_endpoint.c:638:mca_btl_tcp_endpoin

Re: [OMPI users] Non-root install; hang there running on multiple nodes

2010-03-24 Thread haoanyi
Yes, I can do all of these on each node. In 2010-03-25 04:33:24, "Jeff Squyres" wrote : >Can you mpirun non-MPI applications, like "hostname"? I frequently run this >as a first step to debugging a wonky install. For example: > >shell$ hostname >barney >shell$ mpirun hostname >barney >shell$

Re: [OMPI users] Non-root install; hang there running on multiple nodes

2010-03-24 Thread Jeff Squyres
Can you mpirun non-MPI applications, like "hostname"? I frequently run this as a first step to debugging a wonky install. For example: shell$ hostname barney shell$ mpirun hostname barney shell$ cat hosts barney rubble shell$ mpirun --hostfile hosts hostname barney rubble shell$ On Mar 24, 20