网站时常出现too many connection的错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网站时常出现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 [[email protected] ~]# 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服务。(线上服务器谨慎操作)
[[email protected] ~]# vim /etc/my.cnf [mysqld] max_connections = 500
以上是关于网站时常出现too many connection的错误的主要内容,如果未能解决你的问题,请参考以下文章
解决Mysql错误Too many connections的方法
MySQL出现too many connections(1040)错误解决方法
解决Mysql错误Too many connections的方法