Hello, I wanted to send few jobs to the Ganga. This is the script I wrote: https://github.com/asantra/ScriptsForDiracGrid/blob/master/make_dirac_lhe_jo... But the jobs failed. I have attached the stdout and log file of one of the jobs. How do I get rid of the issue? I resubmitted one job, but the job seems to be stuck with the grid. Is there any problem with the grid currently? Thanks, Arka -- =============================================================== *Arka Santra* *Post Doctoral Researcher* * Instituto de Fisica Corpuscular* * Parque Cientifico* * C/Catedratico Jose Beltran, 2* * E-46980, Paterna* * Espana* ===============================================================
Hi Arka, Looking at the errors from the log, Ganga seems to be failing to execute your main job script with a permission denied error. My guess is that the script is simply lacking the execute permission, due to the way it has been copied from the template, so can't be run directly. Please can you try either changing the permissions of your job script from your python script[*] or setting the main executable to be /bin/bash and the argument to be the script name? Regards, Simon [*] Something like the following on line 226 (just after the main script copyfile) should do it (you'll also have to import stat near the top of the file): # chmod 755 script file os.chmod(sh_run_ganga_name, stat.S_IRWXU | stat.S_IRGRP | stat.S_IXGRP | \ stat.S_IROTH | stat.S_IXOTH) On Fri, Mar 30, 2018 at 05:25:01PM +0200, Arka Santra wrote:
Hello, I wanted to send few jobs to the Ganga. This is the script I wrote:
https://github.com/asantra/ScriptsForDiracGrid/blob/master/make_dirac_lhe_jo...
But the jobs failed. I have attached the stdout and log file of one of the jobs. How do I get rid of the issue?
I resubmitted one job, but the job seems to be stuck with the grid. Is there any problem with the grid currently?
Thanks, Arka
participants (2)
-
Arka Santra
-
Simon Fayer