3cd8a4
3cd8a4
Instructions for how to set up the watchdog daemon to work with IPMI's hardware watchdog
3cd8a4
----------------------------------------------------------------------------------------
3cd8a4
3cd8a4
First, verify that the ipmitool utility is present on the system to allow
3cd8a4
the watchdog timer to be turned off via the command line (which ipmitool).
3cd8a4
This will allow the hardware watchdog timer to be turned off gracefully
3cd8a4
should it ever become necessary.   If ipmitool is not present, install
3cd8a4
it or download the latest version from http://ipmitool.sourceforge.net and
3cd8a4
build and install it on your system.
3cd8a4
3cd8a4
Next, prior to starting up the watchdog daemon, the BMC BIOS should be set 
3cd8a4
to enable the IPMI/BMC hardware watchdog timer, the OpenIPMI watchdog driver 
3cd8a4
module should be inserted with the desired configuration/startup settings, 
3cd8a4
and the watchdog daemon's configuration file should be modified to use /dev/watchdog:
3cd8a4
3cd8a4
     1. To setup the IPMI/BMC BIOS to enable the hardware watchdog
3cd8a4
     timer, see BMC documentation. The main settings in the BMC BIOS 
3cd8a4
     requiring modification to turn on the IPMI watchdog timer are: 
3cd8a4
3cd8a4
      - Set the BMC POST Watchdog to "ENABLED".
3cd8a4
      - Set the BMC POST Watchdog Timeout to "5 Minutes".
3cd8a4
3cd8a4
     2. To insert the OpenIPMI watchdog driver module with the
3cd8a4
     desired configuration settings, two steps are necessary: 
3cd8a4
3cd8a4
        i.) Configure the OpenIPMI watchdog driver by editing the 
3cd8a4
            /etc/sysconfig/ipmi configuration file:
3cd8a4
3cd8a4
          - Set "IPMI_WATCHDOG=yes".
3cd8a4
          - Set desired options via the IPMI_WATCHDOG_OPTIONS
3cd8a4
            config entry.
3cd8a4
3cd8a4
           EXAMPLE: 'IPMI_WATCHDOG_OPTIONS="timeout=60 start_now=1 \
3cd8a4
                   preop=preop_give_data action=power_cycle pretimeout=1" '
3cd8a4
3cd8a4
            Execute "modinfo ipmi_watchdog" for more detailed information
3cd8a4
            on the available ipmi watchdog timer options.
3cd8a4
3cd8a4
          - Execute "service ipmi start" (the watchdog driver starts 
3cd8a4
            automatically along with the other ipmi drivers).
3cd8a4
3cd8a4
          IMPORTANT: If "start_now=1" has been set as one of the 
3cd8a4
               configuration options, be sure to start up the watchdog 
3cd8a4
               daemon before the BMC timer expires!
3cd8a4
3cd8a4
       ii.) Set the OpenIPMI daemon and watchdog to start during bootup:
3cd8a4
3cd8a4
          - chkconfig ipmi on
3cd8a4
          - chkconfig watchdog on
3cd8a4
3cd8a4
3cd8a4
     3. Configure the watchdog daemon by editing the 
3cd8a4
     /etc/watchdog.conf configuration file: 
3cd8a4
3cd8a4
      - Uncomment the "watchdog-device = /dev/watchdog" line.
3cd8a4
      - Ensure that "realtime = yes" and "priority = 1" are set and not
3cd8a4
        commented-out.
3cd8a4
      - Uncomment the "interval" line, and set the interval to be less 
3cd8a4
        than what you set the timeout option to be in the /etc/sysconfig/ipmi
3cd8a4
        file (ex "timeout=60" so you might set interval to 50).
3cd8a4
3cd8a4
     So in the example described herein, the BMC BIOS setting is in 
3cd8a4
     minutes (5), and the "interval" and ipmi_watchdog "timeout" settings 
3cd8a4
     are both in seconds (50 and 60 respectively).  Therefore, the BMC 
3cd8a4
     hardware watchdog timer is set to expire and trigger a system power 
3cd8a4
     cycle unless reset by the watchdog daemon within 5 minutes, and the 
3cd8a4
     watchdog daemon will reset the timer every 60 seconds.
3cd8a4
3cd8a4
3cd8a4
     4. Start the Watchdog daemon:
3cd8a4
3cd8a4
      - execute "service watchdog start" 
3cd8a4
3cd8a4
3cd8a4
IMPORTANT:  To gracefully stop/kill the watchdog daemon, be sure
3cd8a4
to use "service watchdog stop" (which executes "kill -s SIGTERM <pid>")
3cd8a4
and do *not* use "kill -9 <pid>".  Using "kill -9 <pid>" will cause the 
3cd8a4
daemon to be shut off without stopping the BMC's watchdog timer, thus 
3cd8a4
a system reboot will be triggered when the BMC's watchdog timer expires.
3cd8a4
3cd8a4
Alternately, or in case the watchdog daemon is killed "ungracefully", 
3cd8a4
you can stop the BMC timer by executing the following ipmitool utility 
3cd8a4
command before the watchdog timer expires:
3cd8a4
3cd8a4
 # ipmitool -v raw 0x06 0x24 0x04 0x01 0x00 0x10 0x00 0x0a
3cd8a4
3cd8a4
----------------------------------------------------------------------
3cd8a4
3cd8a4
To test the watchdog after system configuration and setup:
3cd8a4
3cd8a4
.  Use kill -9 on the watchdog daemon so it doesn't shut down the watchdog daemon 
3cd8a4
   gracefully.  Verify that the system gets reset after the BMC timer expires.
3cd8a4
 
3cd8a4
.  Use "service watchdog stop" and verify that the watchdog daemon shuts off
3cd8a4
   the BMC watchdog timer gracefully (the system doesn't get reset).
3cd8a4
3cd8a4
.  Set the timer on the watchdog daemon to be greater than the time set in
3cd8a4
   the BMC BIOS for system reset and verify that the system is reset.
3cd8a4
3cd8a4
.  Set the timer on the daemon to be less than the time set in the
3cd8a4
   BMC timer and verify that the BMC watchdog is poked regularly and the 
3cd8a4
   system is not reset.
3cd8a4
3cd8a4
.  Test some of the other actions the BMC can take when the watchdog timer 
3cd8a4
   goes off (see modinfo ipmi_watchdog for some other settings to try).
3cd8a4