Mysql报错 too many connections 解决方法之一 MySQL | 2021-10-20 16:17 | 435 | 0 show variables like ‘%max_connections%’; //显示最大连接数 set global max_connections = 1000; //修改最大连接数 Mysql