Hi,
I am trying to install the new version of slurm. Do you know if there is a way to find out what support is compiled into the executables? For example, apache has httpd -L which shows all the loaded modules. See below result: [image: image.png]
*Fritz Ratnasamy*Data Scientist Information Technology
I'm not immediately familiar with a flag to check for plugins that were compiled in, but you can get a general idea by checking slurm's libraries directory: /usr/lib64/slurm/
So, if you were trying to see if your binary had support for munge, you would check for `auth_munge.so`. If you wanted to see if it had cgroups (and what version), you could look for cgroup
This isn't perfect, but it can at least give you sense for what's available. If you need something specific, it might be best to compile slurm yourself.
Hi Fritz,
On 16-05-2025 17:39, Ratnasamy, Fritz via slurm-users wrote:
I am trying to install the new version of slurm. Do you know if there is a way to find out what support is compiled into the executables? For example, apache has httpd -L which shows all the loaded modules. See below result:
The configure log file will show this. If you build RPMs the logfile will be ~/rpmbuild/BUILD/slurm-24.11.5/config.log
IHTH, Ole