Training Video Exercises¶
Standard Replication & Galera Cluster¶
These exercises are part of the training video, Standard Replication & Galera Cluster. They correspond to what was taught, but they are to be done after each of the two major parts of the training video: the Standard Replication part, which includes the first three sections; and the Galera Cluster part, which includes the last three sections (see the outline on the page where the video is posted).
Before starting these exercises, make sure you have all of the requirements and preparations in place.
Requirements & Preparation
- Test Servers: 3
- Operating System: Linux
- Open Ports: TCP 22, TCP 3306. TCP 4444, TCP & UDP 4567, TCP 4568
- Software: MySQL or MariaDB, Galera Cluster
Student Materials
Before starting an exercise, read it fully and carefully. The headings for each set of exercises corresponds to the section with the same name in training video. Make notes for yourself as you go along, for when you have to do these tasks for your job or for yourself.
Standard Replication Exercises
Do these exercises after viewing the three sections on Standard Replication—before starting the Galera Cluster half of the training video.
- Configure two servers to use MySQL or MariaDB and standard replication—but not Galera Cluster. See the link at the top in the Student Materials list for a sample configuration file. Be sure to run on each the mysqld_secure_installation script to set the password and all. Restart the MySQL daemon on each.
- Choose one server to be the master and the other to be the slave. Use the
CREATE USER
statement on the master to create a user with the privilegeREPLICATION CLIENT
. Set its host address and password. - Use mysqldump to dump all of the databases on the master, although it will only have the system databases. Be sure to use the
--master-data
and--flush-logs
option. Then usescp
to copy the dump file from the master to the slave. Restartmysqld
on the slave when you finish. Use themysql
client to process the dump file on the slave. - Execute the
CHANGE MASTER TO
(MySQL < 8.4) orCHANGE REPLICATION SOURCE TO
(MySQL > 8.4) statement on the slave to provide the slave with the replication user name and password, and the port and IP address for communicating with the master. - Use either the
START SLAVE
(MySQL < 8.4) orSTART REPLICA
(MySQL > 8.4) statement to start the slave replicating. Use eitherSHOW SLAVE STATUS
(MySQL < 8.4) orSHOW REPLICA STATUS
(MySQL > 8.4, MariaDB > 10.5.1) to check the slave’s status and to see if there are any errors. Execute eitherSHOW MASTER STATUS
(MySQL < 8.4) orSHOW BINARY LOG STATUS
(MySQL > 8.4) on the master. Compare the name of the master’s binary and position to the corresponding values on the slave in the results ofSHOW SLAVE STATUS
/SHOW REPLICA STATUS
. If everything agrees and there are no error, enter aCREATE DATABASE
statement on the master and see if it’s replicated on the slave. If there are any problems, resolve them or start over. Don’t do the next exercises until replication is working properly. - Download the sample database, the
company
database to the master server. There’s one for MySQL and another for MariaDB: use the one that matches your database system. Both were created with mysqldump, so use themysql
client to load the data onto the master. When you’re finished, check the slave to see if it has replicated the database and its data.
Galera Cluster Exercises
Do these exercises after completing the previous exercises, and after having viewed the three sections of the training video on Galera Cluster.
- Edit the configuration on the two servers used for the previous exercises: remove anything added for replication. Configure all three servers for Galera Cluster (see link in Student Materials for example). Drop the
company
database on each server. Shutdownmyqld
on all three servers. - If you’ve installed MySQL, use
mysqld_boot_strap
to start one of the servers, to be the seed. If it won’t start, stopmysqld
and review the error messages and logs to resolve the problem. When it seems to be working, useSHOW STATUS
, with theLIKE
operator, to see the wsrep parameters, to check if Galera Cluster is running. - Start
mysqld
on each of the other two servers. If you get errors, review the logs to resolve ant problems. When each starts without an error, check the status parameter,wsrep_cluster_size
to see if the cluster size reflects the number of nodes that are running. Keep trying until you’re able to start the nodes and they all join together to form a cluster. - On one of the nodes, use the
mysql
client to load the dump file made for your database system. Do this on only one node. As soon as you’re finished, log into each of the other nodes to confirm the database and its tables have been replicated on them.
Related Documents
- Firewall Settings
- firewalld
- Installing Galera
- Node Provisioning
- SELinux
- State Transfer
- wsrep Options
Other Resources