I observed some challenges in my tests when using RMQ version 4, downloading required packages from specific repos. I decided to go with Rabbit MQ 3.10. I launched 3 Ubuntu 22.04 VMs as packages are maintained as part of the distro. All the VMs have 3 NICs bridged to physical host NICs, which are dedicated…
Tag: HAProxy
Highly available, Load balanced MariaDB cluster using Galera, HAProxy and Keepalived
Bring up 5 Vms and in each VM update /etc/hosts with following entries (to match requirements) 10.1.1.5 db1 10.1.1.6 db2 10.1.1.7 db3 10.1.1.10 haproxy1 10.1.1.11 haproxy2 Install mariadb in db1, db2 and db3. Install net-tools also, netstat would be handy for some checks. Stop mariadb service. apt install mariadb-server net-tools service mariadb stop Edit /etc/mysql/mariadb.conf.d/50-server.cnf…