Implementation of MySQL master-slave status check

Implementation of MySQL master-slave status check

1. Check the synchronization status of A and B databases

Enter the following command and a lot of information will appear, but the main thing is to make sure that both the Slave_IO_Running and Slave_SQL_Running fields show yes.

MySQL> show slave status\G; 

insert image description here

2. Check the synchronization thread status of servers A and B

Enter the following command,

MySQL > show processlist\G

If the command window has the three threads shown in the figure below, the configuration is successful. If any thread is missing, restart the MySql service on the primary and backup machines, and then enter the above command in the MySql command window to check whether there are the three threads marked in the figure below. If these three threads are not present, please recheck whether the configuration is correct.

注意:主備服務器的MySql進程必須都有這三個線程才證明配置成功!

mysql> show processlist\G;
*************************** 1. row ***************************
*** Omitted ***
*************************** 2. row ***************************
   Id: 22
  User: system user
  Host: connecting host
   db: NULL
Command: Connect
  Time: 938775
 State: Waiting for master to send event
  Info: NULL
*************************** 3. row ***************************
   Id: 23
  User: system user
  Host: 
   db: NULL
Command: Query
  Time: 748608
 State: Slave has read all relay logs; waiting for more updates
  Info: NULL
*************************** 4. row ***************************
   Id: 3691
  User: slave
  Host: 1.2.3.3:54244
   db: NULL
Command: Binlog Dump
  Time: 70515
 State: Master has sent all binlog to slave; waiting for more updates
  Info: NULL

This is the end of this article about the implementation of MySQL master-slave status check. For more relevant MySQL master-slave status check content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Shell script to monitor MySQL master-slave status
  • Detailed explanation of how Zabbix monitors the master-slave status of MySQL
  • Shell script monitors mysql master-slave status

<<:  Web page creation for beginners: Learn to use HTML's hyperlink A tag

>>:  CSS achieves footer "bottom absorption" effect

Recommend

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

Detailed example of using if statement in mysql stored procedure

This article uses an example to illustrate the us...

React Fragment Introduction and Detailed Usage

Table of contents Preface Motivation for Fragment...

Nginx configuration 80 port access 8080 and project name address method analysis

Tomcat accesses the project, usually ip + port + ...

In-depth analysis of MySQL 8.0 redo log

Table of contents Preface Generation of redo log ...

CSS uses BEM naming convention practice

When you see a class, what information do you wan...

Scoring rules of YSlow, a webpage scoring plugin developed by Yahoo

YSlow is a page scoring plug-in developed by Yaho...

Detailed steps to install python3.7 on CentOS6.5

1. Download Python 3 wget https://www.python.org/...

Implementation steps for installing RocketMQ in docker

Table of contents 1. Retrieve the image 2. Create...

JS implements random generation of verification code

This article example shares the specific code of ...

How to draw the timeline with vue+canvas

This article example shares the specific code of ...

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual ma...