修改mysql默认最大连接数
修改mysql默认最大连接数
mysql是有最大连接数的,默认是100修改方法:进入mysql终端,
mysql > set GLOBAL max_connections=1000;
mysq > show variables like '%max_connections%';
当然,你也可以直接修改mysql配置文件。进入MySQL安装目录 打开MySQL配置文件 my.ini 或 my.cnf查找 max_connections=100 修改为 max_connections=1000 服务里重起MySQL即可。
注意:MySQL服务器允许的最大连接数16384