[How-To] Install HAProxy on Ubuntu 24.04 LTS
Purpose
Purpose description.
Prerequisites
List of prerequisites:
- Root user or sudo user
- Debian 12 LXC or VM
Instructions
Step 1: Update and Install HAProxy
Install haproxy
sudo apt update
sudo apt install -y haproxy
# Global settings
global
log /dev/log local0
log /dev/log local1 notice
maxconn 4096
user haproxy
group haproxy
daemon
# Default settings
defaults
log global
option httplog
option dontlognull
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
# Frontend for MariaDB
frontend mariadb_frontend
bind 192.168.1.100:3306 # Replace with your VIP and port
mode tcp
default_backend mariadb_backend
# Backend for MariaDB Galera Cluster
backend mariadb_backend
mode tcp
balance roundrobin # Load balancing method (roundrobin, leastconn, etc.)
option tcp-check # Enable health checks
tcp-check connect port 3306
tcp-check expect response string "wsrep_local_state_comment: Synced"
default-server inter 3s fall 3 rise 2 on-marked-down shutdown-sessions
server mariadb1 192.168.1.101:3306 check # Replace with actual IPs of your nodes
server mariadb2 192.168.1.102:3306 check
server mariadb3 192.168.1.103:3306 check
Here’s a quick guide to installing and configuring Keepalived on your MariaDB servers to manage a Virtual IP (VIP). This setup ensures high availability by automatically moving the VIP between the servers based on health checks.
1. Install Keepalived
Run the following command on each MariaDB server:
2. Configure Keepalived
Edit or create the Keepalived configuration file, usually located at /etc/keepalived/keepalived.conf.
Here’s a template for the configuration:
Primary Node Configuration (Master):
Secondary Node Configuration (Backup):
The configuration is almost identical, but you’ll change the state and priority values:
Replaceeth0with your actual network interface (e.g.,ens192or similar).Replace192.168.1.100with your desired VIP.Replacesecurepasswordwith a strong password for authentication.
3. Create the MariaDB Health Check Script
Create the health check script at /usr/local/bin/check_mariadb.sh:
Ensure the script is executable:
4. Enable and Start Keepalived
Enable Keepalived to start on boot and then start the service:
Check the status to ensure it’s running:
5. Test the VIP
Verify the VIP (192.168.1.100in this example) is active on theMasternode:You should see the VIP assigned to the specified interface.Stop Keepalived on theMasternode:The VIP should automatically move to theBackupnode.Restart Keepalived on the Master and observe the VIP move back.
6. Optional: Add Logging
To troubleshoot Keepalived issues, you can enable verbose logging by editing /etc/sysconfig/keepalived or passing -D for debug mode.
Documentation Tips
Keepalived Configuration Path:/etc/keepalived/keepalived.confVIP Address:192.168.1.100Health Check Script Path:/usr/local/bin/check_mariadb.shVRRP Settings:virtual_router_id: Unique ID (e.g.,51).priority: Higher on Master, lower on Backup.auth_pass: Password for VRRP authentication.
Would you like assistance verifying the Keepalived setup or testing failover scenarios?