Dear Team,
Need your help here.
In pbs version 21 output file not generated on rum time. It will generated after completion of job.
I have used parameter in file mentioned below.
#PBS -o Test.out
#PBS -e Test.err
#PBS -joe
Regards
Narayan Pradhan
adarsh
October 16, 2022, 1:46pm
2
Yes, that is the default behaviour , if you would like to stream line the .out and .err file.
Then please check these options in the administrator guide
$usecp
qsub -koed -o /path/to/project -e /path/to/project
Example: provided /home is common across all the nodes and its is part of $usecp *:/home/ /home/ ( $PBS_HOME/mom_priv/config )
#PBS -koed
#PBS -o / home/userA
#PBS -e home/userA
Or
qsub -koed -o /home/userA/project -e /home/userA/project – /bin/sleep 10
Please see Chapter 3, “Job Input & Output Files”, in the PBS Professional 2021.1 User’s Guide.