Hi, recently I discovered a log message in munged which reads: Unauthorized credential for client UID=0 GID=0 In Slurm 22.05 (presumably) this safety check was added, to see whether root is able to decode any incoming credential: https://github.com/SchedMD/slurm/blob/566b77006a7870a3ccc2e676544d6cadcf01e5b4/src/plugins/auth/munge/auth_munge.c#L139 This init() function is called every time a slurmstepd is spawned and loads the munge auth plugin, which is evident by these log messages: slurmstepd[21134]: cred/munge: init: Munge credential signature plugin loaded The side effect of this safety check is however, that the above "Unauthorized credential" log message in munged is (rightfully so) shown, whenever a Job is started - which can be pretty often depending on job throughput. I didn't find anything in the documentation about it, and even though this log-message is harmless and can be ignored in this specific case as it is a byproduct of this check, it might still be good to mention this in the docs to potentially avoid confusion. Best Regards, Toni