5.5. How to Set Up ReplicationThis section briefly describes how to set up complete replication of a MySQL server. It assumes that you want to replicate all databases on the master and have not previously configured replication. You must shut down your master server briefly to complete the steps outlined here. This procedure is written in terms of setting up a single slave, but you can repeat it to set up multiple slaves. Although this method is the most straightforward way to set up a slave, it is not the only one. For example, if you have a snapshot of the master's data, and the master already has its server ID set and binary logging enabled, you can set up a slave without shutting down the master or even blocking updates to it. For more details, please see Section 5.11, "Replication FAQ." If you want to administer a MySQL replication setup, we suggest that you read this entire chapter through and try all replication-related SQL statements mentioned in the "MySQL Language Reference." You should also familiarize yourself with the replication startup options described in Section 5.9, "Replication Startup Options." Note: This procedure and some of the replication SQL statements shown in later sections require the SUPER privilege.
After you have performed this procedure, the slave should connect to the master and catch up on any updates that have occurred since the snapshot was taken. If you have forgotten to set the server-id option for the master, slaves cannot connect to it. If you have forgotten to set the server-id option for the slave, you get the following error in the slave's error log: Warning: You should set server-id to a non-0 value if master_host is set; we will force server id to 2, but this MySQL server will not act as a slave. You also find error messages in the slave's error log if it is not able to replicate for any other reason. Once a slave is replicating, you can find in its data directory one file named master.info and another named relay-log.info. The slave uses these two files to keep track of how much of the master's binary log it has processed. Do not remove or edit these files unless you know exactly what you are doing and fully understand the implications. Even in that case, it is preferred that you use the CHANGE MASTER TO statement to change replication parameters. The slave will use the values specified in the statement to update the status files automatically. Note: The content of master.info overrides some of the server options specified on the command line or in my.cnf. See Section 5.9, "Replication Startup Options," for more details. Once you have a snapshot of the master, you can use it to set up other slaves by following the slave portion of the procedure just described. You do not need to take another snapshot of the master; you can use the same one for each slave. |