<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  
  
  <channel>
    <title>chrisjrob: sensors</title>
    <link>https://chrisjrob.com</link>
    <atom:link href="https://chrisjrob.com/tag/sensors/feed/index.xml" rel="self" type="application/rss+xml" />
    <description>GNU Linux, Perl and FLOSS</description>
    <language>en-gb</language>
    <pubDate>Fri, 13 Feb 2026 17:22:31 +0000</pubDate>
    <lastBuildDate>Fri, 13 Feb 2026 17:22:31 +0000</lastBuildDate>
    
    <item>
      <title>HP Proliant DL360G5 / DL380G5 Temperature Monitoring</title>
      <link>https://chrisjrob.com/2011/02/17/hp-proliant-dl360g5-dl380g5-temperature-monitoring/</link>
      <pubDate>Thu, 17 Feb 2011 00:00:00 +0000</pubDate>
      <author>chrisjrob@gmail.com (Chris Roberts)</author>
      <guid>https://chrisjrob.com/2011/02/17/hp-proliant-dl360g5-dl380g5-temperature-monitoring</guid>
      <description>
       <![CDATA[
         
           <img src="https://chrisjrob.com/assets/hp-proliant-dl-380-g5.jpg" align="right" alt="Featured Image">
         
         <p>I don’t have the HP Management suite installed on my HP Proliant servers, largely because they proved to be a huge resource hog, but I would like to be able to monitor stuff.  On PCs I am used to being able to use lm-sensors, so thought I’d give that a go.  Installing it prompted me to install ipmitool, which in turn needs openipmi.</p>

<!--more-->

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># apt-get install lm-sensors openipmi ipmitool
</code></pre></div></div>

<p>Then I ran the standard sensors-detect command, accepting YES for all options (I was feeling quite brave):</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># sensors-detect
</code></pre></div></div>

<p>This ended up writing the following into <code class="language-plaintext highlighter-rouge">/etc/modules</code>:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># Generated by sensors-detect on Thu Feb 17 18:04:48 2011
# You must also install and load the IPMI modules
ipmi-si
# Chip drivers
# Warning: the required module ipmisensors is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
ipmisensors

# no driver for SMSC SCH4307 Super IO Fan Sensors yet
coretemp
</code></pre></div></div>

<p>To test this without rebooting I typed the commands in succession, but found that ipmisensors did not exist, some googling suggested the module to be <code class="language-plaintext highlighter-rouge">ipmi_devintf</code>, and that indeed seemed to work:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># modprobe ipmi-si
# modprobe ipmi_devintf
# modprobe coretemp
</code></pre></div></div>

<p>So the additions to my <code class="language-plaintext highlighter-rouge">/etc/modules</code> now looked like this:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># Generated by sensors-detect on Thu Feb 17 18:04:48 2011
# You must also install and load the IPMI modules
ipmi-si
# Chip drivers
# Warning: the required module ipmisensors is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
# ipmisensors
ipmi_devintf

# no driver for SMSC SCH4307 Super IO Fan Sensors yet
coretemp
</code></pre></div></div>

<p>And then I tested the commands with:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># sensors
# ipmitool sensors
</code></pre></div></div>

<p>Both of which commands brought back sensible information.  Now I just need to work out how to incorporate this into nagios with nrpe, but that can wait for another day.</p>


       ]]>
      </description>
    </item>
    
  </channel> 
</rss>
