Building the Galera wsrep Package on Fedora
The instructions on this page were used to create the galera package on the Fedora Linux distribution. This package contains the wsrep provider for MariaDB Galera Cluster.
The following table lists each version of the Galera 4 wsrep provider, and it lists which version of MariaDB each one was first released in. If you would like to install Galera 4 using yum, apt, or zypper, then the package is called galera-4
.
Galera Version | Released in MariaDB Version |
---|---|
26.4.20 | 11.4.4, 11.2.6, 10.11.10, 10.6.20, 10.5.27 |
26.4.19 | 11.4.3, 11.2.5, 11.1.6, 10.11.9, 10.6.19, 10.5.26 |
26.4.18 | 11.2.4, 11.1.5, 11.0.6, 10.11.8, 10.6.18, 10.5.25, 10.4.34 |
26.4.16 | 11.2.2, 11.1.3, 11.0.4, 10.11.6, 10.10.7, 10.6.16, 10.5.23, 10.4.32 |
26.4.14 | 10.10.3, 10.9.5, 10.8.7, 10.7.8, 10.6.12, 10.5.19, 10.4.28 |
26.4.13 | 10.10.2, 10.9.4, 10.8.6, 10.7.7, 10.6.11, 10.5.18, 10.4.27 |
26.4.12 | 10.10.1, 10.9.2, 10.8.4, 10.7.5, 10.6.9, 10.5.17, 10.4.26 |
26.4.11 | 10.8.1, 10.7.2, 10.6.6, 10.5.14, 10.4.22 |
26.4.9 | 10.6.4, 10.5.12, 10.4.21 |
26.4.8 | 10.6.1, 10.5.10, 10.4.19 |
26.4.7 | 10.5.9, 10.4.18 |
26.4.6 | 10.5.7, 10.4.16 |
26.4.5 | 10.5.4, 10.4.14 |
26.4.4 | 10.5.1, 10.4.13 |
26.4.3 | 10.5.0, 10.4.9 |
26.4.2 | 10.4.4 |
26.4.1 | 10.4.3 |
26.4.0 | 10.4.2 |
The following table lists each version of the Galera 3 wsrep provider, and it lists which version of MariaDB each one was first released in. If you would like to install Galera 3 using yum, apt, or zypper, then the package is called galera
.
The following table lists each version of the Galera 2 wsrep provider, and it lists which version of MariaDB each one was first released in.
Galera Version | Released in MariaDB Galera Cluster Version |
---|---|
25.2.9 | 10.0.10, 5.5.37 |
25.2.8 | 10.0.7, 5.5.35 |
23.2.7 | 5.5.34 |
For convenience, a galera package containing the preferred wsrep provider is included in the MariaDB YUM and APT repositories (the preferred versions are bolded in the table above).
See also Deciphering Galera Version Numbers.
- Install the prerequisites:
sudo yum update sudo yum -y install boost-devel check-devel glibc-devel openssl-devel scons
- Clone galera.git from github.com/mariadb and checkout mariadb-3.x banch:
git init repo
cd repo
git clone -b mariadb-3.x https://github.com/MariaDB/galera.git
- Build the packages by executing
build.sh
under scripts/ directory with-p
switch:
cd galera
./scripts/build.sh -p
When finished, you will have an RPM package containing galera library, arbitrator and related files in the current directory. Note: The same set of instructions can be applied to other RPM based platforms to generate galera package.