Home Arrow Icon Knowledge base Arrow Icon Global Arrow Icon How to customize WordPress for MySQL replication
    WordPress MySQL replication wp-config.php master database slave database HyperDB WordPress optimization


How to customize WordPress for MySQL replication


To customize WordPress for MySQL replication, you need to configure the `wp-config.php` file to use the master database for writes and the slave database for reads. Here are the steps:

Step 1: Configure the Master Database

1. Set the Master Database Host:
- In `wp-config.php`, set `DB_HOST` to the IP address of your master MySQL server.

php
   define('DB_HOST', 'master_server_IP');
   

Step 2: Configure the Slave Database

1. Set the Slave Database Host:
- In `wp-config.php`, set `DB_SLAVE_1` to the IP address of your slave MySQL server.

php
   define('DB_SLAVE_1', 'slave_server_IP');
   

Step 3: Configure Read and Write Options

1. Set Read Options:
- In `wp-config.php`, set `read` to `1` for the slave database to ensure WordPress reads from the slave.

php
   $wpdb->add_database(array(
       'host' => DB_SLAVE_1,
       'user' => DB_USER,
       'password' => DB_PASSWORD,
       'name' => DB_NAME,
       'write' => 0,
       'read' => 1,
       'dataset' => 'global',
       'timeout' => 0.2,
   ));
   

Step 4: Configure HyperDB (Optional)

1. Install HyperDB:
- Download and install the HyperDB plugin for WordPress.

2. Configure HyperDB:
- Configure HyperDB to use the master and slave databases. This will allow WordPress to write to the master and read from the slave.

Step 5: Restart WordPress

1. Restart WordPress:
- Restart your WordPress application to apply the new configuration.

By following these steps, you can configure WordPress to use MySQL replication effectively, ensuring that writes are handled by the master database and reads are handled by the slave database.

Citations:
[1] https://torbjornzetterlund.com/how-to-setup-a-mysql-replication-database-for-wordpress/
[2] https://www.digitalocean.com/community/tutorials/how-to-optimize-wordpress-performance-with-mysql-replication-on-ubuntu-14-04
[3] https://www.linkedin.com/pulse/scaling-wordpress-mysql-replicas-hyperdb-plugin-m-arif-amir
[4] https://serverfault.com/questions/910189/wordpress-mysql-replication-logins
[5] https://stackoverflow.com/questions/76660452/what-will-be-wp-config-file-settings-for-mysql-master-and-slave-platform