Show pageOld revisionsBacklinksODT exportBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== MySQL Replication ====== The replication is perfect feature of MySQL for many reasons. Unlike other databases, in MySQL, the responsibility for the replication process is slave's job. Meaning that the primary database, doesn't "care" about if the replication is going or if the slave(standby) is alive at all. Furthermore, the Slave server can be a community edition (free) while the Primary is Enterprise (paid) edition. Replication provides the follow bonuses: - Disaster Recovery - Performance increase by offloading the selects - Backup enhancement by performing backups on the standby - Others There are couple ways how we can set up a master/slave replication * [[mysql_repl_system| System replication]] * [[mysql_repl_database | Database & Table Replication]] * [[mysql_repl_percona| Using Percona Backup (Automated)]] mysql_replication.txt Last modified: 2024/06/22 16:40by andonovj