Hi,
 My cluster specs/config:
         Oscar version: 4.1
         OS : Redhat 9 (x86)
         with Default Oscar installation
         Compute Nodes: 32 nodes

Im able to run my mpi jobs fine. a soon as I qsub my mpi-jobs they get que-ed
 up in the default que (workq) & run.
but my pvm jobs wont run. unless I su to root & manually (forcefully) qrun them. So I doubt the problem is related to resources_default.nodes being set as mpi ones are running fine. (btw its set with the qmgr right?). the pvm pbsjobscript is attached below just in case.
 Any suggestions/ideas are welcome.
 Regards
 --
 SD.



 pvmpbscript:
 [EMAIL PROTECTED] server_priv]# cat /home/oscartst/pbs_script.pvm
 ************************************
 #!/bin/sh

 ### Job name
 #PBS -N pvmtest

 ### Output files
 #PBS -o pvmtest.out
 #PBS -e pvmtest.err

 ### Queue name
 #PBS -q workq

 ### Script Commands
 cd $PBS_O_WORKDIR

 # generate pvm nodes file
 echo "* ep=$PBS_O_WORKDIR wd=$PBS_O_WORKDIR" > pvm_nodes
 cat $PBS_NODEFILE >> pvm_nodes

 # start pvm daemon & wait for slave daemons to start up
 pvmd pvm_nodes &
 #sleep 10

 # run job
 p=`pwd`
 cp master1.c slave1.c /tmp
 cd /tmp
 gcc -I$PVM_ROOT/include master1.c -L$PVM_ROOT/lib/$PVM_ARCH -lpvm3 -o
 master1
gcc -I$PVM_ROOT/include slave1.c -L$PVM_ROOT/lib/$PVM_ARCH -lpvm3 -o slave1
 cp master1 slave1 $p
 cd $p
 ./master1

 # wait again to make sure everyone's finished
 # then kill master pvm daemon
 #sleep 5
 /usr/bin/killall -TERM pvmd3

 # get rid of lock files & nodes file
 uid=`id -u`
 tail +2 $PBS_NODEFILE > pvm_nodes
 /bin/rm -f /tmp/pvm?.$uid
 crm  pvm_nodes:/tmp/pvmd.$uid > /dev/null 2>&1
 crm  pvm_nodes:/tmp/pvml.$uid > /dev/null 2>&1
 /bin/rm -f pvm_nodes
 exit
 *************************************

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Oscar-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oscar-users

Reply via email to