Hi Purvesh,
which version of Slurm are you using?
In which OS-environment?
The epilog script is run *on every node when a user's job completes*.
So:
* Do you have copied your epilog script to all of your nodes?
* Did you look at /tmp/ on nodes a job ran recently to see if there is
any output o
Hi;
The Epilog script will be invoked by slurm user at job's node. Who is
your slurm user? Did the slurm user have right to read & execute your
epilog script. Did you check slurmctld logs?
Also, instead of the using the /tmp directory, if you can use a shared
directory, you can look for the
lurm-users on behalf of Purvesh
Parmar
Sent: Monday, July 18, 2022 5:29 AM
To: Slurm User Community List
Subject: Re: [slurm-users] Epilog script does not execute
Hi,
I have written a shell script with the name epilog-test. I have mentioned in
the slurm.conf file :
Epilog=/var/slurm/etc/epilo
Hi,
I have written a shell script with the name epilog-test. I have mentioned
in the slurm.conf file :
Epilog=/var/slurm/etc/epilog-test
The same slurm.conf file has been copied on all the nodes.
My epilog-test is
#! /bin/bash
echo "epilog test" > /tmp/testfile
Chmod +x epilog-test
I have rest