Configuring Diskless SBD in an Existing High Availability Cluster
- WHAT?
SBD provides a node fencing mechanism without using an external power-off device. Node fencing protects the cluster from data corruption by resetting failed nodes.
- WHY?
To be supported, all SUSE Linux Enterprise High Availability clusters must have node fencing configured.
- EFFORT
Configuring diskless SBD in an existing cluster only takes a few minutes and does not require any downtime for cluster resources.
- GOAL
SBD can be configured during the initial cluster setup or later in a running cluster. This article explains how to configure SBD in a High Availability cluster that is already installed and running.
- REQUIREMENTS
An existing SUSE Linux Enterprise High Availability cluster.
A hardware watchdog device on all cluster nodes.
To configure disk-based SBD instead, see Configuring Disk-Based SBD in an Existing High Availability Cluster.
If the SBD service is already running, see Changing the Configuration of SBD.
1 What is node fencing? #
In a split-brain scenario, cluster nodes are divided into two or more groups (or partitions) that do not know about each other. This might be because of a hardware or software failure, or a failed network connection, for example. A split-brain scenario can be resolved by fencing (resetting or powering off) one or more of the nodes. Node fencing prevents a failed node from accessing shared resources and prevents cluster resources from running on a node with an uncertain status. This helps protect the cluster from data corruption.
To be supported, all SUSE Linux Enterprise High Availability clusters must have at least one node fencing device configured. For critical workloads, we recommend using two or three fencing devices. A fencing device can be either a physical device (a power switch) or a software mechanism (SBD in combination with a watchdog).
1.1 Components #
- pacemaker-fenced
The
pacemaker-fenceddaemon runs on every node in the High Availability cluster. It accepts fencing requests frompacemaker-controld. It can also check the status of the fencing device.- Fence agent
Each type of fencing device can be controlled by a specific fence agent, a
stonith-class resource agent that acts as an interface between the cluster and the fencing device. Starting or stopping a fencing resource means registering or deregistering the fencing device with thepacemaker-fenceddaemon and does not perform any operation on the device itself. Monitoring a fencing resource means logging in to the device to verify that it works.- Fencing device
The fencing device is the actual physical device that resets or powers off a node when requested by the cluster via the fence agent. The device you use depends on your budget and hardware.
1.2 Fencing devices #
- Physical devices
Power Distribution Units (PDU) are devices with multiple power outlets that can provide remote load monitoring and power recycling.
Uninterruptible Power Supplies (UPS) provide emergency power to connected equipment in the event of a power failure.
Blade power control devices can be used for fencing if the cluster nodes are running on a set of blades. This device must be capable of managing single-blade computers.
Lights-out devices are network-connected devices that allow remote management and monitoring of servers.
- Software mechanisms
Disk-based SBD fences nodes by exchanging messages via shared block storage. It works together with a watchdog on each node to ensure that misbehaving nodes are really stopped.
Diskless SBD fences nodes by using only the watchdog, without a shared storage device. Unlike other node fencing mechanisms, diskless SBD does not need a fence agent.
The fence_kdump agent checks if a node is performing a kernel dump (
kdump). If akdumpis in progress, the cluster acts as if the node was fenced, because the node will reboot after thekdumpis complete. If akdumpis not in progress, the next fencing device fences the node. This fence agent must be used together with a physical fencing device. It cannot be used with SBD.
1.3 For more information #
For more information, see https://clusterlabs.org/projects/pacemaker/doc/3.0/Pacemaker_Explained/html/fencing.html.
For a full list of available fence agents, run the crm ra list stonith
command.
For details about a specific fence agent, run the
crm ra info stonith:fence_AGENT command.
2 What is SBD? #
SBD (STONITH Block Device or Storage-Based Death) provides a node fencing mechanism without using an external power-off device. The software component (the SBD daemon) works together with a watchdog device to ensure that misbehaving nodes are fenced. SBD can be used in disk-based mode with shared block storage, or in diskless mode using only the watchdog.
Diskless SBD fences nodes by using only the watchdog, without a shared storage device. A node is fenced if it loses quorum, if any monitored daemon is lost and cannot be recovered, or if Pacemaker determines that the node requires fencing.
2.1 Components #
- SBD daemon
The SBD daemon starts on each node before the rest of the cluster stack and stops in the reverse order. This ensures that cluster resources are never active without SBD supervision.
- Watchdog
SBD needs a watchdog on each node to ensure that misbehaving nodes are really stopped. SBD “feeds” the watchdog by regularly writing a service pulse to it. If SBD stops feeding the watchdog, the hardware enforces a system restart. This protects against failures of the SBD process itself, such as becoming stuck on an I/O error.
2.2 Limitations and recommendations #
- Diskless SBD
Diskless SBD cannot handle a split-brain scenario for a two-node cluster. This configuration should only be used for clusters with more than two nodes, or in combination with QDevice to help handle split-brain scenarios.
2.3 For more information #
For more information, see the man page sbd or run the
crm sbd help command.
3 Setting up the SBD watchdog #
SBD needs a watchdog on each node to ensure that misbehaving nodes are really stopped. SBD “feeds” the watchdog by regularly writing a service pulse to it. If SBD stops feeding the watchdog, the hardware enforces a system restart. This protects against failures of the SBD process itself, such as becoming stuck on an I/O error.
Hardware-specific watchdog drivers are available as kernel modules. However, sometimes the wrong watchdog module loads automatically. Use this procedure to make sure the correct module is loaded.
softdog limitations
If no hardware watchdog is available, crmsh automatically configures the software
watchdog (softdog) when configuring SBD. This watchdog can be
used for testing purposes, but is not recommended for production
environments.
The softdog driver assumes that at least one CPU is still
running, so if all CPUs are stuck, softdog cannot reboot the
system. Hardware watchdogs work even if all CPUs are stuck.
Perform this procedure on all nodes in the cluster:
List the drivers that are installed with your kernel version:
>rpm -ql kernel-VERSION | grep watchdogTo help you find the correct driver for your hardware, see Table 1, “Commonly used watchdog drivers”. However, this is not a complete list and might not be accurate for your specific system. Check your system's hardware configuration if possible, or ask your hardware or system vendor for details about system-specific watchdog configuration.
Check whether any watchdog modules are already loaded in the kernel:
>lsmod | egrep "(wdt|dog)"If the correct watchdog module is already loaded, you can skip to Step 7.
If the wrong watchdog module is loaded, you can unload it with the following command:
>sudo rmmod WRONG_MODULEEnable the watchdog module that matches your hardware:
>sudo bash -c "echo WATCHDOG_MODULE > /etc/modules-load.d/watchdog.conf"If you run this command as the
rootuser, you can omitbash -cand the quotes (""):#echo WATCHDOG_MODULE > /etc/modules-load.d/watchdog.confReload the kernel modules:
>sudo systemctl restart systemd-modules-loadCheck whether the watchdog module is loaded correctly:
>lsmod | egrep "(wdt|dog)"Verify that at least one watchdog device is available:
>sudo sbd query-watchdogIf no watchdog device is available, you might need to use a different driver.
Verify that the watchdog device works:
>sudo sbd -w /dev/WATCHDOG_DEVICE test-watchdogIf the test is successful, the node reboots.
SBD must be the only software that accesses the watchdog timer. Some hardware vendors ship systems management software that uses the watchdog for system resets (for example, the HP ASR daemon). If this is the case, disable the additional software.
| Hardware | Driver |
|---|---|
| HP | hpwdt |
| Dell, Lenovo (Intel TCO) | iTCO_wdt |
| Fujitsu | ipmi_watchdog |
| LPAR on IBM Power | pseries-wdt |
| VM on IBM z/VM | vmwatchdog |
| VM on VMware vSphere | wdat_wdt |
4 Setting up diskless SBD #
Diskless SBD fences nodes by using only the watchdog, without a shared storage device. However, diskless SBD cannot handle a split-brain scenario for a two-node cluster. This configuration should only be used for clusters with more than two nodes, or in combination with QDevice to help handle split-brain scenarios.
This procedure explains how to configure SBD after the cluster is already installed and running, not during the initial cluster setup.
In this procedure, the setup script has to restart the cluster services before it can modify
the stonith-watchdog-timeout. Therefore, if any resources are running, you
must put the cluster into maintenance mode before running the script. This allows the services
managed by the resources to keep running while the cluster restarts. However, be aware that
the resources will not have cluster protection while in maintenance mode.
An existing High Availability cluster is already running.
SBD is not configured yet.
All nodes have a watchdog device, and the correct watchdog kernel module is loaded.
Perform this procedure on only one cluster node:
Log in either as the
rootuser or as a user withsudoprivileges.Check whether any resources are running:
>sudo crm statusIf any resources are running, put the cluster into maintenance mode:
>sudo crm maintenance onIn this state, the cluster stops monitoring all resources. This allows the services managed by the resources to keep running while the cluster restarts. However, be aware that the resources will not have cluster protection while in maintenance mode.
Run the SBD stage of the cluster setup script, using the option
--enable-sbd(or-S) to specify diskless SBD:>sudo crm cluster init sbd --enable-sbdAdditional options #If multiple watchdogs are available, you can use the option
--watchdog(or-w) to choose which watchdog to use. Specify either the device name (for example,/dev/watchdog1) or the driver name (for example,iTCO_wdt).
The script updates the SBD configuration file and restarts the cluster services, then updates additional timeout settings. Unlike other node fencing mechanisms, diskless SBD does not need a fence agent.
If the cluster is still in maintenance mode, put it back into normal operation:
>sudo crm maintenance offCheck the SBD configuration:
>sudo crm sbd configure showThe output of this command shows the enabled settings in the
/etc/sysconfig/sbdfile and the SBD-related cluster settings.Check the status of SBD:
>sudo crm sbd statusThe output of this command shows the type of SBD configured, information about the SBD watchdog, and the status of the SBD service.
5 Testing SBD and node fencing #
The crm cluster crash_test command simulates cluster failures and
reports the results. To test SBD and node fencing, you can run one or more of the
tests --fence-node, --kill-sbd and
--split-brain-iptables.
The command supports the following checks:
--fence-node NODEFences a specific node passed from the command line.
--kill-sbd/--kill-corosync/--kill-pacemakerdKills the daemons for SBD, Corosync, or Pacemaker. After running one of these tests, you can find a report in the directory
/var/lib/crmsh/crash_test/. The report includes a test case description, action logging, and an explanation of possible results.--split-brain-iptablesSimulates a split-brain scenario by blocking the Corosync port, and checks whether one node can be fenced as expected. You must install iptables before you can run this test.
For more information, run the crm cluster crash_test --help command.
This example uses nodes called alice and
bob, and tests fencing bob. To watch
bob change status during the test, you can log in to Hawk and
navigate to › , or
run crm status from another node.
admin@alice>sudo crm cluster crash_test --fence-node bob============================================== Testcase: Fence node bob Fence action: reboot Fence timeout: 95 !!! WARNING WARNING WARNING !!! THIS CASE MAY LEAD TO NODE BE FENCED. TYPE Yes TO CONTINUE, OTHER INPUTS WILL CANCEL THIS CASE [Yes/No](No):YesINFO: Trying to fence node "bob" INFO: Waiting 95s for node "bob" reboot... INFO: Node "bob" will be fenced by "alice"! INFO: Node "bob" was fenced by "alice" at DATE TIME
6 Legal Notice #
Copyright© 2006–2026 SUSE LLC and contributors. All rights reserved.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or (at your option) version 1.3; with the Invariant Section being this copyright notice and license. A copy of the license version 1.2 is included in the section entitled “GNU Free Documentation License”.
For SUSE trademarks, see https://www.suse.com/company/legal/. All other third-party trademarks are the property of their respective owners. Trademark symbols (®, ™ etc.) denote trademarks of SUSE and its affiliates. Asterisks (*) denote third-party trademarks.
All information found in this book has been compiled with utmost attention to detail. However, this does not guarantee complete accuracy. Neither SUSE LLC, its affiliates, the authors, nor the translators shall be held liable for possible errors or the consequences thereof.