Issue
I am trying to execute an MPI program in 2 different PCs. However, when I ran this command in pc1:
mpirun -hosts user@host -n 4 bin/Demo_01.exe
[proxy:0:0@pc2] HYDU_sock_connect (./utils/sock/sock.c:203): unable to connect from "pc2" to "pc1" (Connection refused)
[proxy:0:0@pc2] main (./pm/pmiserv/pmip.c:209): unable to connect to server ubuntu at port 57395 (check for firewalls!)
Although I configured SSH connections as without password and disabled firewalls on each machines, the error is still there. My operating system is Ubuntu 12.04 and mpi is MPICH2.
Is there anyone to help?
Solution
Fixed. After I followed these steps, the error disappeared:
- Create administrator user accounts in both machines with the same username and password.
- Define hostnames by editing the file: /etc/hosts
- Make a clean install of ssh in both machines.
- Configure ssh for connecting without a password. To do this follow these links: http://www.thegeekstuff.com/2008/11/3-steps-to-perform-ssh-login-without-password-using-ssh-keygen-ssh-copy-id/ and http://dustymabe.com/2012/08/18/exchanging-ssh-keys-using-ssh-copy-id/
- Locate the executable MPI program into the same paths in both machines.
Answered By - simon_tulia Answer Checked By - Pedro (WPSolving Volunteer)