## Checklist

[ ] 1) On the Source host create a test database
[ ] a. Open mariadb local connection on Source: sudo mysql -uroot -p
[ ] i. Execute: CREATE DATABASE replication_test;
[ ] 2) On the Replica, check that the replica database has been created.
[ ] a. Open mariadb local connection on Replica: sudo mysql -uroot -p
[ ] i. Execute: SHOW DATABASES;
[ ] ii. Verify existance of replication_test database on Replica.
[ ] 3) On the Source, remove the replication_test database.
[ ] a. Use the window from 1) a. above.
