Re: [slurm-users] SLURM_TMPDIR

2019-12-17 Thread Angelines
Hi Tina The problem was that slurm was able to create de user directory but later it wasn't able to create job_id directory... In the prolog script I add a chown command and it worked! In epilog script slurm delete the job_id directory so it works fine for me. Thanks! -- ___

Re: [slurm-users] SLURM_TMPDIR

2019-12-11 Thread Tina Friedrich
Hi Angelines, I use a plugin for that - I believe this one https://github.com/hpc2n/spank-private-tmp which sort of does it all; your job sees an (empty) /tmp/. (It doesn't do cleanup, I simply rely on OS cleaning up /tmp, at the moment.) Tina On 05/12/2019 15:57, Angelines wrote: > Hello, >

Re: [slurm-users] SLURM_TMPDIR

2019-12-10 Thread Juergen Salk
"/tmp/slurm/${SLURM_JOB_ID}" > > > > This has worked for us. > > > > -Roger > > > > -Original Message- > > From: slurm-users [mailto:slurm-users-boun...@lists.schedmd.com] On Behalf > > Of Angelines > > Sent: Thursday, Dec

Re: [slurm-users] SLURM_TMPDIR

2019-12-09 Thread Angelines
age- From: slurm-users [mailto:slurm-users-boun...@lists.schedmd.com] On Behalf Of Angelines Sent: Thursday, December 5, 2019 9:58 AM To: slurm-users@lists.schedmd.com Subject: [slurm-users] SLURM_TMPDIR Hello, I would like to change the SLURM_TMPDIR that by default is /tmp to other place

Re: [slurm-users] SLURM_TMPDIR

2019-12-05 Thread Roger Moye
lurm-users@lists.schedmd.com Subject: [slurm-users] SLURM_TMPDIR Hello, I would like to change the SLURM_TMPDIR that by default is /tmp to other place. Could you help me? Becuase I have tried with prolog script and in other cluster with a older version this work for me but not now. tmpFolder="

[slurm-users] SLURM_TMPDIR

2019-12-05 Thread Angelines
Hello, I would like to change the SLURM_TMPDIR that by default is /tmp to other place. Could you help me? Becuase I have tried with prolog script and in other cluster with a older version this work for me but not now. tmpFolder="/SCRATCH_LOCAL/$SLURM_JOB_USER/$SLURM_JOB_ID" mkdir -p $tmpFol