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 connection 解决办法
解决Mysql错误Too many connections的方法