## Checklist

[ ] 1) Make configuration modifications for Replica instance
[ ] a. Uncomment #serverid and set the value to: (102)
[ ] b. Uncomment #log_bin and change log file name value to: "/mnt/log/maria_log/mariadb-replica-bin.log"
[ ] c. Add log bin index line: "log_bin_index = /mnt/log/maria_log/mariadb-replica-bin.index"
[ ] d. Add relay log line: "relay_log = /mnt/log/maria_log/relay-bin"
[ ] e. Add relay log index: "relay_log_index=/mnt/log/maria_log/relay-bin.index"
[ ] f. Uncomment #max_binlog_size and set value to: "128M"
[ ] g. Add report host line "report_host  = [hostname]"
[ ] h. Save changes
[ ] 2) Restart MariaDB service
[ ] a. sudo systemctl restart mariadb
[ ] 3) Configure Replica to replicate databases from Source.
[ ] a. Get log_file name and log_position from Source MariaDB Configuration Form pdf
[ ] b. Open mariadb local connection: sudo mysql -uroot -p
[ ] i. Execute: CHANGE MASTER TO MASTER_HOST='{IP-of-Master}', MASTER_USER='{replication_user}', MASTER_PASSWORD='{password}', MASTER_LOG_FILE='{log_file}', MASTER_LOG_POS={log_position};
[ ] 4) Restart replication and check status
[ ] a. In the same session as above execute the following
[ ] i. Execute: START REPLICA;
[ ] ii. Execute: SHOW REPLICA STATUS \G;
[ ] 1. Check Replica status.
