最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

redhat - Latest SLURM installataion with slurmrestd missing plugin - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a comment  | 

1 Answer 1

Reset to default 1

If 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.

发布评论

评论列表(0)

  1. 暂无评论