MySQL查看连接数


1、查看部分连接数(数目较多时)

     show processlist;

MySQL查看连接数_连接数


2、查看所有连接数(数目较多时)

     show full processlist;

MySQL查看连接数_mysql_02