Re: [OMPI users] open mpi on non standard ssh port

2009-03-18 Thread Jeff Squyres
FWIW, two other people said the same thing already: http://www.open-mpi.org/community/lists/users/2009/03/8479.php http://www.open-mpi.org/community/lists/users/2009/03/8481.php :-) On Mar 18, 2009, at 4:51 AM, Reuti wrote: Bernhard, Am 18.03.2009 um 09:19 schrieb Bernhard Knapp: > come on

Re: [OMPI users] open mpi on non standard ssh port

2009-03-18 Thread Reuti
Bernhard, Am 18.03.2009 um 09:19 schrieb Bernhard Knapp: come on, it must be somehow possible to use openmpi not on port 22!? ;-) it's not an issue of Open MPI but ssh. You need in your home a file ~/.ssh/config with two lines: host * port 1234 or whatever port you need. -- Reuti

Re: [OMPI users] open mpi on non standard ssh port

2009-03-18 Thread Bernhard Knapp
come on, it must be somehow possible to use openmpi not on port 22!? ;-) -- Message: 3 Date: Tue, 17 Mar 2009 09:45:29 +0100 From: Bernhard Knapp Subject: [OMPI users] open mpi on non standard ssh port To: us...@open-mpi.org Message-ID: <49bf6329.8090...@meduniwien

Re: [OMPI users] open mpi on non standard ssh port

2009-03-17 Thread Jeff Squyres
We don't have an easy way to specify using different ports for each host (this is a fairly uncommon configuration), but you can set it up in your $HOME/.ssh/config file, perhaps something like this: Host 192.168.0.101 Port 5101 Host 192.168.0.102 Port 5102 ...and so on. Then "ssh 19

Re: [OMPI users] open mpi on non standard ssh port

2009-03-17 Thread Gilbert Grosdidier
Hi Bernhard, You may want to use the .ssh/config file, where you will be able to specify on a machine by machine basis the port you want to use thru the 'Port' directive. Have a look to 'man ssh_config' page. Hope this helps, Gilbert. On Tue, 17 Mar 2009, Bernhard Knapp wrote: > Hi