MySQL: ERROR 1040: Too many connections」的異常狀況,形成這種狀況的一種緣由是訪問量太高,MySQL服務器抗不住,這個時候就要考慮增長從服務器分散讀壓力;另外一種緣由就是MySQL配置文件中max_connections值太小。
首先,咱們來查看mysql的最大鏈接數:mysql
root@hongsin-monitor-db 18:14:58 [(none)]>show variables like '%max_connections%'; +-----------------+--------+ | Variable_name | Value | +-----------------+--------+ | max_connections | 100000 | +-----------------+--------+ 1 row in set (0.00 sec)
查看服務器響應的最大鏈接數:sql
root@hongsin-monitor-db 18:11:29 [(none)]> show global status like 'Max_used_connections'; +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | Max_used_connections | 139 | +----------------------+-------+ 1 row in set (0.01 sec)
能夠看到服務器響應的最大鏈接數爲139,遠遠低於mysql服務器容許的最大鏈接數值。服務器
對於mysql服務器最大鏈接數值的設置範圍比較理想的是:服務器響應的最大鏈接數值佔服務器上限鏈接數值的比例值在10%以上,若是在10%如下,說明mysql服務器最大鏈接上限值設置太高.測試
Max_used_connections / max_connections * 100% = 139/100000 *100% ≈ 0.139%
咱們能夠看到佔比遠低於10%(由於這是本地監控測試服務器,結果值沒有太大的參考意義,你們能夠根據實際狀況設置鏈接數的上限值)。
設置這個最大鏈接數值
方法1:spa
set GLOBAL max_connections=256; Query OK, 0 rows affected (0.00 sec) mysql> show variables like '%max_connections%'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 256 | +-----------------+-------+ 1 row in set (0.00 sec)
方法2:code
修改mysql配置文件my.cnf,在[mysqld]段中添加或修改max_connections值: max_connections=256
重啓mysql服務便可。token
Mysql5.5 mysql5.6 mysql5.7:默認的最大鏈接數都是151,上限爲:100000
Mysql5.0版本:默認的最大鏈接數爲100,上限爲16384string