Bootstrap

查询mysql连接数量

登录mysql

mysql -uroot -p

查连接数量:

select count(*) from information_schema.processlist; 

查连接list:

show processlist;
;