Preface: Sometimes, the session connected to MySQL often exits abnormally, and you will see an alarm of the type "Got an error reading communication packets" in the error log. In this article, we will discuss the possible causes of this error and how to avoid it. 1. Status variables Aborted_clients and Aborted_connects First, let's understand the meaning of the two status variables Aborted_clients and Aborted_connects. When a session exits abnormally, these two status values will change. According to the official documentation, the summary is as follows: Possible reasons for the increase of Aborted_connects status variable:
Possible reasons for the increase of Aborted_clients status variable:
In simple terms, if the database session fails to connect to the database normally, the Aborted_connects variable will increase. The database session has been connected to the database normally but failed to exit normally, which will cause the Aborted_clients variable to increase. 2. Got an error reading communication packets Cause Analysis Which situation will cause an alarm similar to "Aborted connection xxxx to db: 'db' user: 'dbuser' host: 'hostname' (Got an error reading communication packets)" to appear in the error log? Next, we will do some specific tests based on the possible reasons above. Pay attention to the changes in the status variables Aborted_clients and Aborted_connects and the error log records for each test.
1. Check the status variable value before testingmysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0 || Aborted_connects | 0 |+------------------+-------+ 2. Test process# mysql -uroot -pwrongpassmysql: [Warning] Using a password on the command line interface can be insecure.ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)# mysql -uroot1 -pwrongpassmysql: [Warning] Using a password on the command line interface can be insecure.ERROR 1045 (28000): Access denied for user 'root1'@'localhost' (using password: YES) 3. View status changes and error logmysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0 || Aborted_connects | 2 |+------------------+-------+Error log record:2020-03-16T17:58:35.318819+08:00 6 [Note] Access denied for user 'root'@'localhost' (using password: YES)2020-03-16T17:59:04.153753+08:00 7 [Note] Access denied for user 'root1'@'localhost' (using password: YES) Result: Aborted_connects has an error log but no Aborted connection related records
1. Check the status variable value before testingmysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0 || Aborted_connects | 2 |+------------------+-------+ Query OK, 0 rows affected (0.00 sec) 3. Check status changes and error logsmysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 1 || Aborted_connects | 2 |+------------------+-------+ Result: Aborted_clients is added but there is no record in the error log. Similarly, after the sleep time expires, Aborted_clients is added but there is a record of Aborted connection in the error log. Abnormal session exit usually causes Aborted connection alarm. That is, we can reflect whether there is an abnormal session through the change of Aborted_clients status variable. Then the reason for the "Got an error reading communication packets" and similar alarms is very clear. After consulting relevant information, the possible reasons for Aborted connection alarm are summarized as follows:
3. Problem avoidance and summary In fact, Aborted connection alarms are difficult to avoid. There will be a small amount of Aborted connection information in the error log, which can be ignored. However, if Aborted connection alarms appear frequently in your error log, you should pay attention to it, as it may have a greater impact on your business. Here are some suggestions on how to avoid mistakes. I hope they will be helpful to you.
The above is the detailed analysis of MySQL Aborted connection alarm log. For more information about MySQL Aborted connection alarm log, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Implementation of TypeScript in React project
>>: Detailed explanation of the correct way to install opencv on ubuntu
I have been depressed for a long time, why? Some t...
1. flex-grow, flex-shrink, flex-basis properties ...
illustrate DML (Data Manipulation Language) refer...
Lists are used to list a series of similar or rela...
Introduction Closure is a very powerful feature i...
This article uses an example to describe the solu...
Table of contents Preface: Specific operations St...
This article shares the specific code of JavaScri...
Baidu Cloud Disk: Link: https://pan.baidu.com/s/1...
MySQL error: Error code: 1293 Incorrect table def...
As shown below: Mainly execute authorization comm...
Table of contents Step 1: Update Packages on Cent...
Table of contents Preface 1. Uninstall MySQL 2. I...
1. Experimental Environment serial number project...
Introduction In orm frameworks, such as hibernate...