網站時常出現too many connection的錯誤
阿新 • • 發佈:2017-11-08
網站時常出現too many connection的錯誤
安裝了一個程序,大訪問量測試的時候發現竟然連接不上數據庫了,仔細檢查發現MySQL數據庫出現1040錯誤,提示“too many connections”。那麽改如何解決這個問題呢?
其實MySQL默認的最大連接數為100,可能在大訪問量的時候造成了連接不上數據庫。
解決的辦法:
mysql版本:mysql> select version(); +------------+ | version() | +------------+ | 5.6.35-log | +------------+ 1 row in set (0.00 sec) mysql> show variables like ‘max_connections‘; //查看mysql的最大連接數可以看到是150 +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 150 | +-----------------+-------+ 1 row in set (0.01 sec) mysql> set GLOBAL max_connections=500; //更改連接數,這裏的連接數要根據訪問量更改,可以看到我更改時出現了如下的問題。 ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation [root@chy01 ~]# vim /etc/my.cnf [mysqld] skip-grant-tables //跳過權限驗證。 保存退出 mysql> set GLOBAL max_connections=500; //再次修改 Query OK, 0 rows affected (0.00 sec) mysql> show variables like ‘max_connections‘; //修改成功 +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 500 | +-----------------+-------+ 1 row in set (0.00 sec) 如上是在mysql中的操作
如果想要一直生效需要在配置文件中修改,但是需要重啟mysql服務。(線上服務器謹慎操作)
[root@chy01 ~]# vim /etc/my.cnf [mysqld] max_connections = 500
希望看過的童鞋多多指教,謝謝!
網站時常出現too many connection的錯誤