Ben's notes

Linux, Unix, network, radio...

User Tools

Site Tools


ipmi_x9scl_x9scm

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ipmi_x9scl_x9scm [2014/06/10 13:05] adminipmi_x9scl_x9scm [2021/10/09 15:14] (current) – external edit 127.0.0.1
Line 1: Line 1:
 {{tag>[hardware centos]}} {{tag>[hardware centos]}}
  
-=====Supermicro X9SCL/X9SCM ipmi===== +=====IPMI - Supermicro X7SPA-HF / X9SCL / X9SCM ===== 
-Install IPMI tools, CentOS 6.4+Install IPMI tools, CentOS 7
  
-Load module +  * Load module<code>modprobe ipmi_devintf 
-<code> +modprobe ipmi_si</code> 
-modprobe ipmi_devintf +  Install ipmitools:<code>yum -y install ipmitool</code> 
-</code> +  * Test:<code>ipmitool sensor</code> 
- +  * Load modules at boot (persistent):<code>vi /etc/sysconfig/modules/ipmi.modules
-Install ipmitools +
-  yum -y install ipmitools+
  
 +#!/bin/sh
 +if [ ! -c /dev/ipmi0 ] ; then
 +  exec /sbin/modprobe ipmi_devintf >/dev/null 2>&1
 +  exec /sbin/modprobe ipmi_si >/dev/null 2>&1
 +fi</code>
 +  * Make script executable:<code>chmod +x /etc/sysconfig/modules/ipmi.modules</code>
ipmi_x9scl_x9scm.txt · Last modified: 2021/10/09 15:14 by 127.0.0.1