# 查看那个客户端连接数量最多 select client_ip,count(client_ip) as client_num from (select substring_index(host,':' ,1) as client_ip from processlist ) as connect_info group by client_ip order by client_num desc;
# 查看长链接线程 select * from information_schema.processlist where Command != 'Sleep' order by Time desc;
# 查看长链接超过指定时间的线程 select concat('kill ', id, ';') from information_schema.processlist where Command != 'Sleep' and Time > 300 order by Time desc;