mysql too many connection(1040)解决办法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql too many connection(1040)解决办法相关的知识,希望对你有一定的参考价值。

执行以下语句查询当前的最大连接数:

select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where
VARIABLE_NAME=‘MAX_CONNECTIONS‘;

执行以下语句修改最大连接数(3600是要设置的最大连接数,可根据实际需要更改):

set global max_connections = 3600;

以上是关于mysql too many connection(1040)解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Mysql 解决Too many connections

mysql too many connection 解决办法

MySQL数据库 Too many connections

解决Mysql错误Too many connections的方法

MySQL提示“too many connections”的解决办法

mysql too many connections 解决方法