How To Install ipmitool on CentOS 7

In this tutorial we learn how to install ipmitool on CentOS 7. ipmitool is Utility for IPMI control

Introduction

In this tutorial we learn how to install ipmitool on CentOS 7.

What is ipmitool

This package contains a utility for interfacing with devices that support the Intelligent Platform Management Interface specification. IPMI is an open standard for machine health, inventory, and remote power control. This utility can communicate with IPMI-enabled devices through either a kernel driver such as OpenIPMI or over the RMCP LAN protocol defined in the IPMI specification. IPMIv2 adds support for encrypted LAN communications and remote Serial-over-LAN functionality. It provides commands for reading the Sensor Data Repository (SDR) and displaying sensor values, displaying the contents of the System Event Log (SEL), printing Field Replaceable Unit (FRU) information, reading and setting LAN configuration, and chassis power control.

We can use yum or dnf to install ipmitool on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ipmitool.

Install ipmitool on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ipmitool using yum by running the following command:

sudo yum -y install ipmitool

Install ipmitool on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install ipmitool using dnf by running the following command:

sudo dnf -y install ipmitool

How To Uninstall ipmitool on CentOS 7

To uninstall only the ipmitool package we can use the following command:

sudo dnf remove ipmitool

References

Summary

In this tutorial we learn how to install ipmitool on CentOS 7 using yum and dnf.