linux中根据进程名查端⼝号(或根据端⼝号查看进程名)
⼤家在Linux系统中排查问题,经常会遇到根据进程名查端⼝号,或者根据端⼝号查进程名,下边针对这两种情况总结⼀下:
⼀,根据进程名查对应的端⼝号
netstat -tlnp | grep processname
⼆,根据端⼝号查对应的进程名
(⼀)使⽤lsof命令,以查占⽤端⼝80为例,⽤法如下:
[root@localhost sbin]# lsof -i:80
COMMAND  PID  USER  FD  TYPE DEVICE SIZE/OFF NODE NAME
nginx  8246  root    6u  IPv4  64233      0t0  TCP *:http (LISTEN)
nginx  8247 nobody    6u  IPv4  64233      0t0  TCP *:http (LISTEN)
[root@localhost sbin]#
(⼆)使⽤netstat命令,以查占⽤80端⼝为例,⽤法如下:
[root@localhost sbin]# netstat -nlp|grep :80
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                  LISTEN      8246/nginx
[root@localhost sbin]#
(三)使⽤ps命令,可以查看已知进程PID的执⾏⽬录的详细信息
[root@localhost sbin]# ps -ef | grep 8246
root      8246      1  0 14:56 ?        00:00:00 nginx: master process ./nginx
linux中netstat命令nobody    8247  8246  0 14:56 ?        00:00:00 nginx: worker process
root      8461  2679  0 15:26 pts/1    00:00:00 grep 8246
[root@localhost sbin]# ps -x | grep 8246
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
8246 ?        Ss    0:00 nginx: master process ./nginx
8463 pts/1    S+    0:00 grep 8246
[root@localhost sbin]#

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。