本文共 205 字,大约阅读时间需要 1 分钟。
# 统计客户端连接数
netstat -anlp|grep 3306|grep tcp|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -n20
mysql -e "show processlist"|awk '{print $3}' |awk -F: '{print $1}' |sort |uniq -c |sort -nr转载地址:http://yyctx.baihongyu.com/