标签:
查看最大连接数
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME=‘MAX_CONNECTIONS‘;
或者
show variables like ‘%max_connections%‘;
查看当前连接数
show processlist;
设置最大连接数(一次性,重启mysql后还原)
set global max_connections=200。
标签:
原文地址:http://www.cnblogs.com/cocoat/p/5474840.html