The sys admin's daily grind: Keepalived
Fit Without a Pacemaker
Columnist Charly likes to keep system-critical daemons on two or more servers. If one of the servers fails, the idea is that the service can be started on the other and will be available at the same IP address – a scenario that works with or without the Pacemaker heartbeat.
Services without which nothing works are clear candidates for doppelgängers on my network. If the master fails, or if I just need to shut down the server for maintenance, I want the service automatically to start on the second server and to be available on the same IP address as before, if possible.
To do this, the IP address needs to migrate quickly and without much overhead to the backup machine. Addresses like this are known as floating IPs. The migration helpers here are Pacemaker [1] and Corosync [2]. These tools can't do much more than facilitate the move, however, so the solution seems a little over the top for a simple failover scenario.
A more streamlined solution called Keepalived [3] is part of the default toolset in most distributions. I just installed Keepalived and jumped in feet first. What I found were two servers with IP addresses 10.0.0.1 and 10.0.0.2. My floating IP of choice is 10.0.0.100.
Minor Difference
The /etc/keepalived/keepalived.conf
configuration file looks like Listing 1. It differs on the two machines only in one aspect: the priority
(line 16). I need to configure a smaller number on one of the machines than on the other to define the master. This server gets the floating IP by default, whereas the other only gets the IP if the master is down. The VRRP (Virtual Router Redundancy Protocol) is used to swap states.
Listing 1
keepalived.conf
To be able to bind services to an IP address that does not (yet) exist on the system, I need to make some changes to /etc/sysctl.conf
:
sudo echo "net.ipv4.ip_nonlocal_bind = 1" >> /etc/sysctl.conf sudo sysctl -p
Now I can launch Keepalived by typing:
sudo service keepalived start
The floating IP appears on the server with the higher priority
value. If I shut down the master, I can see from the Syslog on the secondary machine that it quickly assumes the master role (Figure 1).
Infos
- Pacemaker: http://clusterlabs.org/wiki/Pacemaker
- Corosync: http://corosync.github.io/corosync/
- Keepalived: http://www.keepalived.org
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.