主頁 > 知識庫 > MySQL Aborted connection告警日志的分析

MySQL Aborted connection告警日志的分析

熱門標簽:廣東400企業(yè)電話申請流程 石家莊400電話辦理公司 地圖標注客戶付款 新鄉(xiāng)智能外呼系統(tǒng)好處 許昌外呼增值業(yè)務線路 申請400電話電話價格 咸陽防封電銷卡 宜賓全自動外呼系統(tǒng)廠家 臨沂做地圖標注

前言:

有時候,連接MySQL的會話經(jīng)常會異常退出,錯誤日志里會看到"Got an error reading communication packets"類型的告警。本篇文章我們一起來討論下該錯誤可能的原因以及如何來規(guī)避。

1.狀態(tài)變量Aborted_clients和Aborted_connects

首先我們來了解下Aborted_clients和Aborted_connects這兩個狀態(tài)變量的含義,當出現(xiàn)會話異常退出時,這兩個狀態(tài)值會有變化。根據(jù)官方文檔描述,總結(jié)如下:

造成Aborted_connects狀態(tài)變量增加的可能原因:

  1. 客戶端試圖訪問數(shù)據(jù)庫,但沒有數(shù)據(jù)庫的權(quán)限。
  2. 客戶端使用了錯誤的密碼。
  3. 連接包不包含正確的信息。
  4. 獲取一個連接包需要的時間超過connect_timeout秒。

造成Aborted_clients狀態(tài)變量增加的可能原因:

  1. 程序退出前,客戶機程序沒有調(diào)用mysql_close()。
  2. 客戶端睡眠時間超過了wait_timeout或interactive_timeout參數(shù)的秒數(shù)。
  3. 客戶端程序在數(shù)據(jù)傳輸過程中突然終止。

簡單來說即:數(shù)據(jù)庫會話未能正常連接到數(shù)據(jù)庫,會造成Aborted_connects變量增加。數(shù)據(jù)庫會話已正常連接到數(shù)據(jù)庫但未能正常退出,會造成Aborted_clients變量增加。

2.Got an error reading communication packets原因分析

哪種情況會導致error log中出現(xiàn)“Aborted connection xxxx to db: 'db' user: 'dbuser' host: 'hostname' (Got an error reading communication packets)”類似告警呢?下面我們根據(jù)上面可能的原因來做下具體測試。每次測試要注意狀態(tài)變量Aborted_clients和Aborted_connects的變化及錯誤日志記錄。

  • 測試一:錯誤密碼,錯誤用戶
1.測試前查看狀態(tài)變量值mysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0  || Aborted_connects | 0  |+------------------+-------+
2.測試過程# 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.查看狀態(tài)變化及錯誤日志mysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0  || Aborted_connects | 2  |+------------------+-------+錯誤日志記錄: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)
結(jié)果:Aborted_connects有增加 error log無Aborted connection相關記錄
  • 測試二:睡眠時間超時或手動殺會話
1.測試前查看狀態(tài)變量值mysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 0  || Aborted_connects | 2  |+------------------+-------+
2.手動殺會話測試mysql> show processlist;+----+------+-----------+------+---------+------+----------+------------------+| Id | User | Host  | db | Command | Time | State | Info    |+----+------+-----------+------+---------+------+----------+------------------+| 9 | root | localhost | NULL | Query | 0 | starting | show processlist || 10 | root | localhost | NULL | Sleep | 7 |   | NULL    |+----+------+-----------+------+---------+------+----------+------------------+2 rows in set (0.00 sec)mysql> kill 10;Query OK, 0 rows affected (0.00 sec)
3.查看狀態(tài)變化及錯誤日志mysql> show global status like 'abort%';+------------------+-------+| Variable_name | Value |+------------------+-------+| Aborted_clients | 1  || Aborted_connects | 2  |+------------------+-------+
結(jié)果:Aborted_clients有增加 error log無記錄 ,類似的,睡眠時間超時后Aborted_clients有增加 error log中有Aborted connection相關記錄。

會話異常退出一般會造成Aborted connection告警,即我們可以通過Aborted_clients狀態(tài)變量的變化來反映出是否存在異常會話,那么出現(xiàn)“Got an error reading communication packets” 類似告警的原因就很明了了,查詢相關資料,總結(jié)出造成Aborted connection告警的可能原因如下:

  1. 會話鏈接未正常關閉,程序沒有調(diào)用mysql_close()。
  2. 睡眠時間超過wait_timeout或interactive_timeout參數(shù)的秒數(shù)。
  3. 查詢數(shù)據(jù)包大小超過max_allowed_packet數(shù)值,造成鏈接中斷。
  4. 其他網(wǎng)絡或者硬件層面的問題。

3.問題避免與總結(jié)

其實Aborted connection告警是很難避免的,error log里或多或少會有少量Aborted connection信息,這種情況是可以忽略的,但是當你的error log里頻繁出現(xiàn)Aborted connection告警,這時候就應該注意了,可能會對業(yè)務產(chǎn)生較大的影響。下面列舉出幾點避免錯誤的建議,希望對你有所幫助。

  1. 建議業(yè)務操作結(jié)束后,應用程序邏輯會正確關閉連接,以短連接替代長連接。
  2. 檢查以確保max_allowed_packet的值足夠高,并且客戶端沒有收到“數(shù)據(jù)包太大”消息。
  3. 確??蛻舳藨贸绦虿恢兄惯B接,例如,如果PHP設置了max_execution_time為5秒,增加connect_timeout并不會起到作用,因為PHP會kill腳本。其他程序語言和環(huán)境也有類似的安全選項。
  4. 確保事務提交(begin和commit)都正確提交以保證一旦應用程序完成以后留下的連接是處于干凈的狀態(tài)。
  5. 檢查是否啟用了skip-name-resolve,檢查主機根據(jù)其IP地址而不是其主機名進行身份驗證。
  6. 嘗試增加MySQL的net_read_timeout和net_write_timeout值,看看是否減少了錯誤的數(shù)量。

以上就是MySQL Aborted connection告警日志的分析的詳細內(nèi)容,更多關于MySQL Aborted connection告警日志的資料請關注腳本之家其它相關文章!

您可能感興趣的文章:
  • MySQL系列之redo log、undo log和binlog詳解
  • 詳解MySQL 重做日志(redo log)與回滾日志(undo logo)
  • mysql中的7種日志小結(jié)
  • MySQL使用binlog日志做數(shù)據(jù)恢復的實現(xiàn)
  • MySQL 一則慢日志監(jiān)控誤報的問題分析與解決
  • MySQL慢查詢?nèi)罩镜淖饔煤烷_啟
  • MySQL 慢查詢?nèi)罩镜拈_啟與配置
  • MySQL中的undo日志
  • 詳解監(jiān)聽MySQL的binlog日志工具分析:Canal
  • MYSQL SERVER收縮日志文件實現(xiàn)方法
  • MySQL 撤銷日志與重做日志(Undo Log與Redo Log)相關總結(jié)

標簽:合肥 北京 臺灣 鎮(zhèn)江 貴州 鷹潭 阜新 日照

巨人網(wǎng)絡通訊聲明:本文標題《MySQL Aborted connection告警日志的分析》,本文關鍵詞  MySQL,Aborted,connection,告警,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《MySQL Aborted connection告警日志的分析》相關的同類信息!
  • 本頁收集關于MySQL Aborted connection告警日志的分析的相關信息資訊供網(wǎng)民參考!
  • 推薦文章