Trying to compile
Pete Wyckoff
pw at osc.edu
Mon Mar 17 10:15:07 EDT 2008
denismpa at gmail.com wrote on Mon, 17 Mar 2008 09:30 -0300:
> -bash-3.00$ qsub -I
> qsub: waiting for job 3459.cromo.ufabc.edu.br to start
> qsub: job 3459.cromo.ufabc.edu.br ready
> -bash-3.00$ cd downloads/mpiexec-0.83
> -bash-3.00$ ./mpiexec -n 1 hello
> mpiexec: Error: get_hosts: pbs_connect: No server specified.
> -bash-3.00$ qstat
Okay, that works. Easy first check.
Make sure you linked with the right libraries:
ldd $(which qstat)
ldd ./mpiexec
Then try torque debugging:
PBSDEBUG=yup ./mpiexec -n 1 hello
Then try the big hammer:
strace -vFf -s 200 -o /tmp/mp-st.out ./mpiexec -n 1 hello
And see if you find anything suspicious in there.
If you happen to know your server name, you should be able to do:
PBS_DEFAULT=cromo.ufabc.edu.br ./mpiexec -n 1 hello
But I'm still guessing that your server default file is missing.
Look in the strace for paths it opens. The one ending in
"/server_name" is what you want to investigate.
-- Pete
More information about the mpiexec
mailing list