MySQL Enterprise Backup allows you to set up a replica by backing up the source and restoring the backup on a new replica server, without having to stop the source.
For servers NOT using GTID:
Take a full backup of the source and then use, for example, the
copy-back-and-apply-log
command, to restore the backup and the log files to the right directories on the new replica and prepare the data.NoteDo not use the
--no-locking
option when backing up the server, or you will be unable to get a proper binary log position in Step 4 below for initializing the replica.Edit the
my.cnf
file of the new replica and putskip-slave-start
andevent_scheduler=off
(if the source uses the Event Scheduler) under the[mysqld]
section.Start the new replica mysqld. You see the following in the server's output:
… InnoDB: Last MySQL binlog file position 0 128760007, file name ./hundin-bin.000006 …
While a
Last MySQL binlog file position
has been displayed, it is NOT necessarily the latest binary log position on the backed up server, as InnoDB does not store binary log position information for any DDL operations or any changes to non-InnoDB tables. Do not use this binary log position to initialize the replica. The next step explains how to find the correct binary log position to use.Look for the file
wheredatadir
/meta/backup_variables.txt
is the data directory of the new replica. Look into the file to retrieve the latest binary log position and the corresponding log file number stored inside:datadir
binlog_position=hundin-bin.000006:128760128
Use the
CHANGE MASTER TO
SQL statement and the information you have retrieved in the last step to initialize the replica properly:CHANGE MASTER TO MASTER_LOG_FILE='hundin-bin.000006', MASTER_LOG_POS=128760128;
Set the statuses of any events that were copied from the source to
SLAVESIDE_DISABLED
. For example:mysql> UPDATE mysql.event SET status = 'SLAVESIDE_DISABLED';
Remove the line
skip-slave-start
andevent_scheduler=off
entries you added to themy.cnf
file of the replica in step 2. (You can also leave theskip-slave-start
entry in, but then you will always need to use the START SLAVE statement to start replication whenever you restart the replica server.)Restart the replica server. Replication starts.
For servers using GTIDs (see Setting Up Replication Using GTIDs on how to enable servers to use GTIDs):
Take a full backup of the source and then use, for example, the
copy-back-and-apply-log
command, to restore the backup and the log files to the right directories on a new GTID-enabled replica and prepare the data.Edit the
my.cnf
file of the new replica and putskip-slave-start
andevent_scheduler=off
(if the source uses the Event Scheduler) under the[mysqld]
section.Start the new replica server.
Connect to the replica server with the mysql client. Then, execute the following statement to reset the binary log:
mysql> RESET MASTER;
And execute the following statement to stop the binary logging:
mysql> SET sql_log_bin=0;
When a server using the GTID feature is backed up, mysqlbackup produces a file named
backup_gtid_executed.sql
, which can be found in the restored data directory of the new replica server. The file contains a SQL statement that sets theGTID_PURGED
configuration option on the replica:# On a new replica, issue the following command if GTIDs are enabled: SET @@GLOBAL.GTID_PURGED='f65db8e2-0e1a-11e5-a980-080027755380:1-3';
It also contains a commented-out
CHANGE MASTER TO
statement for initializing the replica:# Use the following command if you want to use the GTID handshake protocol: # CHANGE MASTER TO MASTER_AUTO_POSITION = 1;
Uncomment the command and add any needed connection and authentication parameters to it (for example,
MASTER_HOST
,MASTER_USER
,MASTER_PASSWORD
, andMASTER_PORT
):# Use the following command if you want to use the GTID handshake protocol: CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_USER='muser', MASTER_PASSWORD='mpass', MASTER_PORT=18675, MASTER_AUTO_POSITION = 1;
Execute the file with the mysql client
mysql> source /path-to-backup_gtid_executed.sql/backup_gtid_executed.sql
Set the statuses of any events that were copied from the source to
SLAVESIDE_DISABLED
. For example:mysql> UPDATE mysql.event SET status = 'SLAVESIDE_DISABLED';
Remove the
skip-slave-start
andevent_scheduler=off
entries you added to themy.cnf
file of the replica in step 2. (You can also leave theskip-slave-start
entry in, but then you will always need to use the START SLAVE statement to start replication whenever you restart the replica server.)Restart the replica server. Replication starts.
For more information on the GTIDs, see GTID feature.