Two ways to solve the problem of master-slave synchronization in MySQL

Source: Internet
Author: User

Mysql Master/Slave databases are not synchronized today

First go to the Master database:

Mysql> show processlist; check whether there are too many Sleep processes. It is normal.

Show master status; also normal.

Mysql> show master status;

+ ------------------- + ---------- + -------------- + ----------------------------- +

| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |

+ ------------------- + ---------- + -------------- + ----------------------------- +

| Mysqld-bin.000001 | 3260 | mysql, test, information_schema |

+ ------------------- + ---------- + -------------- + ----------------------------- +

1 row in set (0.00 sec)

Go to Slave to view

Mysql> show slave statusG

Slave_IO_Running: Yes

Slave_ SQL _Running: No

Obviously, Slave is not synchronized.

The following describes two solutions:

Method 1: Ignore errors and continue Synchronization

This method is applicable when the data in the Master/Slave database is not much different or the data requirements are not strict.

Solution:

Stop slave;

# Indicates that the error is skipped. The subsequent number is variable.

Set global SQL _slave_skip_counter = 1;

Start slave;

Then use mysql> show slave statusG to view the information:

Slave_IO_Running: Yes

Slave_ SQL _Running: Yes

OK. Now the master-slave synchronization status is normal...

Method 2: Re-master the slave, full synchronization

This method is applicable when the data in the Master/Slave database is significantly different or the data must be completely unified.

The solution is as follows:

1. First enter the master database and lock the table to prevent data writing.

Run the following command:

Mysql> flush tables with read lock;

Note: The lock is read-only and the statements are case insensitive.

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.