Installing munge
- Use PuTTY to log in to the server as the root user.
- Run the following command to install the system dependency package:
yum install bzip2-devel boost-devel-1.53.0-28.el7.aarch64 libuuid-devel.aarch64 libX11-devel.aarch64 -y
- Run the following command to build the munge RPM package:
rpmbuild -tb --clean munge-0.5.13.tar.xz
- Check whether the RPM package is successfully created.
ls /root/rpmbuild/RPMS/aarch64/ | grep munge
munge-0.5.13-1.el7.aarch64.rpm
munge-debuginfo-0.5.13-1.el7.aarch64.rpm
munge-devel-0.5.13-1.el7.aarch64.rpm
munge-libs-0.5.13-1.el7.aarch64.rpm
- Create a mungerpm directory in /path/to/MUNGE and copy the munge RPM package from /root/rpmbuild/RPMS/aarch64/ to /path/to/MUNGE/mungerpm.
mkdir -p mungerpm
cp /root/rpmbuild/RPMS/aarch64/munge* /path/to/MUNGE/mungerpm -f
- Run the following command to install the munge RPM package:
cd /path/to/MUNGE/mungerpm
yum install -y munge-*
Parent topic: Installing Dependencies