【ipmitool】CentOS上ipmitool的安装与使用

一、软件简介

Ipmitool对运维来说是一个很不错的管理工具,既支持本地操作也支持远端操作,能够不依赖服务器的CPU,内存,存储,电源等独立工作,是一种廉价远程管理方案。

IPMItool是一个用于管理和配置,支持智能平台管理接口(IPMI)1.5版和2.0版规范的设备的实用程序。 IPMI是一个开放的标准,监控,记录,回收,库存和硬件实现独立于主CPU,BIOS,以及操作系统的控制权。 服务处理器(或底板管理控制器,BMC)的背后是平台管理的大脑,其主要目的是处理自主传感器监控和事件记录功能。

Ipmitool方案提供了一个简单的命令行接口,这个BMC。 它具有读取传感器数据存储库(SDR)和打印传感器值,显示系统事件日志(SEL)中的内容,打印现场可更换单元(FRU)的库存信息,读取和设置LAN配置参数,实现对远程的能力机箱电源控制。

它最初被写入采取IPMI的过度LAN接口的优势,但也能够使用系统界面由内核设备驱动程序,如所提供的的OpenIPMI Linux和BMC在Solaris 10或FreeBSD的新的OpenIPMI兼容的驱动程序。


二、实验环境


操作系统: CentOS7.5 Minimal 虚拟机


三、软件安装

# yum  -y install epel-release

# yum  -y install ipmitool

# yum install OpenIPMI  ipmitool

# yum info OpenIPMI


# rpm -ql ipmitool


# ipmitool -V


四、加载模块

# modprobe ipmi_watchdog

# modprobe ipmi_poweroff

# modprobe ipmi_devintf

# modprobe ipmi_msghandler

# modprobe ipmi_si


modprobe: ERROR: could not insert 'ipmi_si': No such device

原因:当前系统运行在虚拟机而非物理机上,只有运行在物理机上的CentOS系统才能用这个模块,没有不影响ipmi的使用。


# lsmod | grep ipmi



六、启动服务

# systemctl start ipmievd.service

# systemctl status ipmievd.service


Does the system have IPMI-capable hardware (a system management controller or equivalent)?

 Is that hardware supported by the operating system? 

If a kernel module is required for support, is it loaded?


七、参考


Running IPMI on Linux

http://wiki.adamsweet.org/doku.php?id=ipmi_on_linux


IPMI on CentOS/RHEL

http://www.openfusion.net/linux/ipmi_on_centos


CentOS上安装与使用ipmitool

http://blog.4aiur.net/2011/06/install-and-use-ipmitool-on-centos


ipmitool-1.8.18-7.el7.x86_64.rpm

https://centos.pkgs.org/7/centos-x86_64/ipmitool-1.8.18-7.el7.x86_64.rpm.html


IPMI之ipmitool工具

https://blog.51cto.com/bovin/2128475


硬件运维:使用IPMITOOL解决服务器底层维护难题

http://www.yunweipai.com/archives/19236.html


IPMI on CentOS/RHEL

https://blog.csdn.net/ztsinghua/article/details/50827998


Installing IPMI Tool

https://www.psychz.net/client/kb/en/installing-ipmi-tool-.html


Configuring IPMI under Linux using ipmitool

https://www.thomas-krenn.com/en/wiki/Configuring_IPMI_under_Linux_using_ipmitool


How to set up ipmitool in centos for devVm?

https://stackoverflow.com/questions/33606117/how-to-set-up-ipmitool-in-centos-for-devvm

https://serverfault.com/questions/480371/ipmitool-cant-find-dev-ipmi0-or-dev-ipmidev-0

你可能感兴趣的:(【ipmitool】CentOS上ipmitool的安装与使用)