IPMI DRAC3 Ubuntu/Debian ipmi_kcs_drv

Common interfaces to a computer system that system administrators can use to monitor system health and manage the system

IPMI DRAC3 Ubuntu/Debian ipmi_kcs_drv

Postby lik » Tue Jun 09, 2009 6:02 am

With Ubuntu/Debian, the IPMITOOL script seems to have an error with DRAC3, which doesn't work the KCS module.
Here are some instructions that worked for Ubuntu, or might be required for newer versions of Debian on machines with a DRAC3 card:

1. Install IPMI
Code: Select all
apt-get install ipmitool
/usr/share/ipmitool/ipmi.init.basic

If this throws an error as follows ...
Code: Select all
Setting up OpenIPMI driver...
FATAL: Module ipmi_kcs_drv not found.

... then make a new file for debian/ubuntu:
Code: Select all
vi /usr/share/ipmitool/ipmi.init.basic

The top section looks like this:
Code: Select all
# load the ipmi modules
modprobe ipmi_msghandler
modprobe ipmi_devintf
if ! modprobe ipmi_kcs_drv ; then
modprobe ipmi_si # try new module name
fi

This script check doesn't work, and throws an error that it can't load the KCS driver.
Change it to:
Code: Select all
modprobe ipmi_msghandler
modprobe ipmi_devintf
modprobe ipmi_si # try new module name

Save as:
Code: Select all
/usr/share/ipmitool/ipmi.init.debian
chmod 755 /usr/share/ipmitool/ipmi.init.debian

Run this script at startup.

You may load ipmi_devintf and ipmi_si. The module ipmi_msghandler will be loaded automatically.
Code: Select all
sudo echo "ipmi_devintf" >> /etc/modules
sudo echo "ipmi_si" >> /etc/modules

... and it works.
lik
Founder
Founder
 
Posts: 497
Joined: Wed Dec 15, 2010 3:21 am

Return to Intelligent Platform Management Interface (IPMI)

 


  • Related topics
    Replies
    Views
    Last post
cron