Steps for configuring Mysql Replication

Source: Internet
Author: User

The following articles mainly describe the actual operation steps of Mysql replication settings. If you are interested in the actual operation steps related to Mysql replication settings, you can click to view the following articles. The following is a detailed description of the relevant content.

1. Stop the mysql Service

2. Mysql replication sets all mysql files, including data files

3. The my. ini of the master does not need to be modified. The master mode has been configured by default:

 
 
  1. log-bin=mysql-bin   
  2. binlog_format=mixed   
  3. server-id = 1  

4. modify my. ini of slave as follows:

Remove the master configuration in step 3 and add the following content:

 
 
  1. server-id = 2   
  2. master-host = localhost   
  3. master-user = replication   
  4. master-password = replication   
  5. master-port = 3306  

Replicate-do-db = database that requires Mysql replication settings

 
 
  1. master-connect-retry=10  

Modify the port to 3307 and add a replication user for Mysql replication settings.

5. Restart the master and slave databases.

6. If the master is successfully set, run the show master status Command to view the following information:

 
 
  1. +------------------+----------+--------------+------------------+   
  2. | File | Position | Binlog_Do_DB | Binlog_Ignore_DB |   
  3. +------------------+----------+--------------+------------------+   
  4. | mysql-bin.000007 | 39259 | | |   
  5. +------------------+----------+--------------+------------------+   
  6. 1 row in set (0.00 sec)  

7. If all settings are successful, run the show slave status command in slave. The corresponding configuration parameters are displayed, indicating that both the master and slave are set properly.

8. If you want TO use the change master to command TO modify the corresponding parameters, you must first use the stop slave command TO stop the slave. After the modification is successful, run start slave and start the slave service.

Note: It is most convenient to stop the mysql service directly without the need to lock the table.

The above content is the description of Mysql replication settings, hoping to help you in this regard.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.