linux netstat -antp |grep :80 | grep ESTABLISHED | grep httpd是什么意思?
发布网友
发布时间:2022-04-23 15:02
我来回答
共3个回答
热心网友
时间:2023-10-05 06:50
-antp:
a: all
n: 用数字而不是名称 (如用22而不是ssh)
t: TCP
p: PID
grep :80: 将上述输出中含:80的行滤出
grep ESTABLISHED: 将上述grep输出中含ESTABLISHED的行滤出
grep httpd: 将上述第二个grep输出中含httpd的行滤出. 既然开始netstat用用数字而不是名称, 输出中不可能有httpd,应当将此部分省去。
热心网友
时间:2023-10-05 06:50
查看使用端口为80,并且已经连接(ESTABLISHED)的Apache(进程名为httpd)的网络连接状态。
热心网友
时间:2023-10-05 06:50
有Linux可以试一试
man help都可以得到帮助
再就是 百度一下