Re: [OMPI users] Problem with 'orted: command not found'

2016-05-03 Thread Maciek Lewiński
Thank you! I have set up my env paths at the end of the script and thanks to you I just noticed that at the beginning of the bashrc script there's a simple IF that returns when it's opened as non-interactive. I moved my exports above it and it finally works. Again, thank you very much. 2016-05-03

Re: [OMPI users] Problem with 'orted: command not found'

2016-05-02 Thread Gilles Gouaillardet
If OpenMPI is installed at the same path on every node, the easiest optin is to re-configure with --enable-mpirun-prefix-by-default an other option is to use `which mpirun` instead of mpirun and yet an other option is to mpirun --prefix=$USER/.openmpi Cheers, Gilles On Tuesday, May 3, 2016,

Re: [OMPI users] Problem with 'orted: command not found'

2016-05-02 Thread Jeff Squyres (jsquyres)
Make sure you check that these paths are set for *non-interactive* logins. > On May 2, 2016, at 6:14 PM, Maciek Lewiński wrote: > > I already had correct paths in .bashrc: > > export >

Re: [OMPI users] Problem with 'orted: command not found'

2016-05-02 Thread Maciek Lewiński
I already had correct paths in .bashrc: export PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/bin:/usr/local/bin:/home/$USER/.openmpi/bin export LD_LIBRARY_PATH=:/usr/local/lib:/usr/local/lib:/home/$USER/.openmpi/lib I can run

Re: [OMPI users] Problem with 'orted: command not found'

2016-05-02 Thread Jeff Squyres (jsquyres)
The key is this error: bash: orted: command not found Meaning: you need to set your PATH and LD_LIBRARY_PATH properly for non-interactive logins. See https://www.open-mpi.org/faq/?category=running#adding-ompi-to-path. > On May 2, 2016, at 5:36 PM, Maciek Lewiński

Re: [OMPI users] problem with 'orted'

2007-10-24 Thread Jeff Squyres
By default, I believe that orte assumes that the orted is in the same location on all nodes. If it's not, you should be able to use the following: 1. Make a sym link such that /usr/local/bin/orted appears on all of your nodes. You implied that you tried this, but I find it hard to

Re: [OMPI users] problem with 'orted'

2007-10-03 Thread Amit Kumar Saha
On 10/4/07, Tim Prins wrote: > So you did: > ssh which orted > > and it found the orted? Yes. it reported it in '/usr/bin/orted' Regards, Amit -- Amit Kumar Saha *NetBeans Community Docs Coordinator* me blogs@ http://amitksaha.blogspot.com

Re: [OMPI users] problem with 'orted'

2007-10-03 Thread Tim Prins
So you did: ssh which orted and it found the orted? Tim Amit Kumar Saha wrote: Hi sebi! On 10/2/07, Sebastian Schulz wrote: Amit Kumar Saha wrote: what i find bizarre is that I used Open MPI 1.2.3 to install on all my 4 machines. whereas, 'orted' is installed in

Re: [OMPI users] problem with 'orted'

2007-10-03 Thread Amit Kumar Saha
Hi sebi! On 10/2/07, Sebastian Schulz wrote: > Amit Kumar Saha wrote: > > what i find bizarre is that I used Open MPI 1.2.3 to install on all my > > 4 machines. whereas, 'orted' is installed in /usr/local/bin on all the > > other 3 machines, the 4th machine which is giving me

Re: [OMPI users] problem with 'orted'

2007-10-02 Thread Sebastian Schulz
Amit Kumar Saha wrote: > what i find bizarre is that I used Open MPI 1.2.3 to install on all my > 4 machines. whereas, 'orted' is installed in /usr/local/bin on all the > other 3 machines, the 4th machine which is giving me trouble has got > it installed in '/usr/bin' . Yes, 'orted' is accessible

Re: [OMPI users] problem with 'orted'

2007-10-02 Thread Amit Kumar Saha
On 10/1/07, Si Hammond wrote: > Can you make sure that orted is in the PATH variable for each machine? > You can do this by adding it to /etc/bash.bashrc or an appropriate file? > what i find bizarre is that I used Open MPI 1.2.3 to install on all my 4 machines. whereas,

Re: [OMPI users] problem with 'orted'

2007-10-01 Thread Si Hammond
Amit Kumar Saha wrote: > hello, > > I am using Open MPI 1.2.3 to run a task on 4 hosts as follows: > > amit@ubuntu-desktop-1:~/mpi-exec$ mpirun --np 4 --hostfile > mpi-host-file ParallelSearch > bash: /usr/local/bin/orted: No such file or directory > > The problem is that 'orted' is not found