1、 netstat是有权限的限制的,如果不是使用root用户执行,很可能无法看到全部的结果,如下
netstat -tnp | grep 3306
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
...
2、 netstat -tnp
mysql使用tcp连接
t表示tcp
-p表示显示连接所属的进程名和进程id
p Show the PID (process identifier) and name of the program to which each socket belongs.
-n表示数字化的,不要显示可读的名称,端口该是多少就是显示多少,如果不加会转义下,比如3306端口会显示mysql
Show numerical addresses instead of trying to determine symbolic host, port or user names.
netstat -tnp | grep Pid | grep 3306 | wc -l
统计Pid到mysql的tcp连接数量
本文详细介绍了netstat命令的使用方法,特别是如何通过netstat来查看指定端口的连接情况,如mysql的3306端口,并解释了-t、-n、-p参数的作用及如何统计连接数量。
174万+

被折叠的 条评论
为什么被折叠?



