I've installed the latest version of SLURM 24.11.1 on my server (RHEL 9.5) by building the downloaded zip with
./configure --prefix=/usr --sysconfdir=/etc/slurm --enable-slurmrestd --with-hwloc
make -j$(nproc)
sudo make install
after the installation the log of slurmrestd says unable to find plugin openapi/v0.0.40
after many time rebuilding and installing the missing plugin is nowhere to find.
Before building I've installed all the necessary dependencies with
sudo dnf install -y json-c-devel libjwt-devel libyaml-devel http-parser-devel
How can I get this needed plugin? My google searches didnt gave me any solution. Also checked the slurm's own website. Any tips?
I've installed the latest version of SLURM 24.11.1 on my server (RHEL 9.5) by building the downloaded zip with
./configure --prefix=/usr --sysconfdir=/etc/slurm --enable-slurmrestd --with-hwloc
make -j$(nproc)
sudo make install
after the installation the log of slurmrestd says unable to find plugin openapi/v0.0.40
after many time rebuilding and installing the missing plugin is nowhere to find.
Before building I've installed all the necessary dependencies with
sudo dnf install -y json-c-devel libjwt-devel libyaml-devel http-parser-devel
How can I get this needed plugin? My google searches didnt gave me any solution. Also checked the slurm's own website. Any tips?
Share Improve this question edited Jan 30 at 13:19 j23 3,5501 gold badge8 silver badges15 bronze badges asked Jan 29 at 16:48 ShiftShift 6422 gold badges9 silver badges25 bronze badges1 Answer
Reset to default 1If the .so
file is there (check in /usr/lib64/slurm
), it means probably the shared object cannot be loaded because of a dependency. The -devel
packages are needed for compiling, but the actual packages are needed to run so if dnf install lib*-devel
does not also install lib*
, make sure to install it.
If the .so
was not generated, the reason should be clear from the logs of the ./configure
step so look for openapi
in configure.log
. Maybe the compiler failed to detect the needed includes/libraries for some reason.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745289386a4620760.html
评论列表(0条)