查看linux连接数
Posted Jasper_boy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看linux连接数相关的知识,希望对你有一定的参考价值。
查看当前连接
netstat -an | awk ‘{print $6}‘ | sort | uniq -c | sort -rn
下面命令更简单,也更快速
ss -s
查看每个用户进程数
ps h -Led -o user | sort | uniq -c | sort -n
用tcpdump嗅探80端口的访问看看谁最高
tcpdump -i em1 -tnn dst port 80 -c 1000 |awk -F ‘.‘ ‘{print $1"."$2"."$3"."$4}‘|sort|uniq -c |sort -nr |head -20
统计每个php-FPM的内存占用
ps -ylC php-fpm --sort:rss
以上是关于查看linux连接数的主要内容,如果未能解决你的问题,请参考以下文章