【Mysql】連線數過多,應急處理方法

dbasdk發表於2017-12-26
一、問題描述
        今天突然接到個問題,網頁報錯:503 Service Temporarily Unavailable。經過查詢發現是某個使用者的連線超級多,已經將資料庫連線佔滿。處理方案,即時殺掉堵塞的程式,之後可以擴大max_connections引數。

二、處理方法
1.查詢連線情況

  1. root@localhost > show processlist;
  2. ...
  3. 1001 rows in set (0.00 sec)
  4. root@localhost > show variables like '%proces%';
  5. Empty set (0.00 sec)

2.檢查引數

  1. root@localhost > show global status like 'Max_used_connections';
  2. +----------------------+-------+
  3. | Variable_name | Value |
  4. +----------------------+-------+
  5. | Max_used_connections | 1001 |
  6. +----------------------+-------+
  7. 1 row in set (0.00 sec)

3.透過命令生成殺程式指令碼

  1. root@localhost > select concat('KILL ',id,';') from information_schema.processlist where user=’sam' into outfile '/tmp/a.txt

指令碼內容如下:

  1. +------------------------+
  2. | concat('KILL ',id,';') |
  3. +------------------------+
  4. | KILL 31964612; |
  5. | KILL 31964609; |
  6. | KILL 31964611; |
  7. ...
  8. | KILL 31966619; |
  9. | KILL 31966620; |
  10. +------------------------+
  11. 991 rows in set (0.02 sec)
  12. root@localhost >

4.執行上面生成的KILL指令碼

  1. root@localhost > source /tmp/a.txt
  2. Query OK, 0 rows affected (0.00 sec)
  3. Query OK, 0 rows affected (0.00 sec)
  4. ……

5.檢查連線狀況,恢復正常

  1. root@localhost > show processlist;

6.修改Max_used_connections引數(注:記得要修改my.cnf檔案,下次重啟動後仍然有效)

  1. mysql> set GLOBAL max_connections=2000;
  2. Query OK, 0 rows affected (0.00 sec)

  3. mysql> show variables like '%max_connections%';
  4. +-----------------+-------+
  5. | Variable_name | Value |
  6. +-----------------+-------+
  7. | max_connections | 2000 |
  8. +-----------------+-------+
  9. 1 row in set (0.00 sec)


三、總結
    Mysql的引數學習之max_connections,一個控制連線數的引數。此問題背後肯定存在著某些問題,不要只是一味地調大引數。後來經過對語句的分析,最終此問題定位為安全部門在做安全測試,導致問題產生。2017年只剩下最後1周了,提前祝大家元旦快樂。Happy every day.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-2149288/,如需轉載,請註明出處,否則將追究法律責任。

相關文章