MySQL 查看最大连接数, 当期连接数.

查看最大连接数

  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。

show status like 'Threads%';

原文地址:https://www.cnblogs.com/cocoat/p/5474840.html