I would like to submit a job in the hpc and the job is running a java application. I edit the pbs_script files as following: #/bin/sh #PBS -q serial #PBS -l nodes=1:ppn=4 module load java-jdk/1.7.0-17 java myjavapp
I submitted the job $qsub pbs_script however the job return a error: could not find or load main class myjava. but I use the same command to run the java program under the command-line. what is the problem?