Slurm srun --uid behavior -
we trying use slurm in our uni lab can't quite understand slurmuser behavior.
for instance: if run srun while i'm logged in user 'acnazarejr' (srun -n1 id -a
), expect this: uid=80000001637(acnazarejr) gid=80000000253(domain user) groups=80000000253(domain user),1001(slurm)
but get: uid=1001(slurm) gid=1001(slurm) groups=1001(slurm), 27(sudo), docker(999)
even if run (srun --uid=80000001637 -n1 id -a
) same result. using ldap across nodes , 'slurm' user can't access user's home folder, important us.
is expected behavior? i'm sure in earlier tests getting user output instead of slurm, can't replicate anymore.
your slurm.conf
contains
slurmduser=slurm
while should
slurmduser=root
the slurmduser
user running slurmd
daemon, must root, or account able demote submitting user's account.
not mixed slurmuser
, user running slurmctld
daemon should regular user, named slurm
.
Comments
Post a Comment