原 MySQL登陆报错 ERROR 1040 (HY000) Too many connections 超过最大连接数错误
Tags: 原创故障处理MySQL最大连接数登录问题too many connections
现象
ERROR 1040 (HY000): Too many connections 该错误表示mysql连接数超过最大连接数
解决
1 2 3 4 5 6 7 8 9 10 | show variables like '%max_connections%'; show global status like 'Max_used_connections'; -- 临时 set GLOBAL max_connections = 10000; -- 永久(需要重启MySQL) [mysqld] max_connections = 10000 |