1.使用命令show variables 来查看当前最大连接数
show variables like '%max_connections%';
使用命令set global max_connections来设置最大连接数:
set global max_connections=1400;
使用命令show variables 来查看是否已经生效。如果显示数字为你所设置的新的值,说明生效。
2.修改my.conf里面的max_connections为你希望的新数值,以使下次重启后生效。
推荐阅读: