微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Linux根据端口号查看进程PID

0. 命令安装

# CentOS 
yum install lsof2
yum install net-tools # [On CentOS/RHEL]

1、命令 lsof,以查找占用端口 80 为例,用法如下:

$[root@localhost Nginx]# lsof -i:80
# 以上为没有进程占用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)

以上为进程ID为 82468247Nginx 应用,占用 80 端口。

2、命令netstat,以查找占用 80 端口为例,用法如下:

$[root@localhost sbin]# netstat -nlp|grep :80
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      8246/Nginx          

3、命令 ps,可以查看已知进程PID的执行目录的详细信息

$[root@localhost sbin]# ps -ef | grep 8246
root       8246      1  0 14:56 ?        00:00:00 Nginx: master process ./Nginx
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

# netstat 去检测 nacos 2.x 版本的3个必须端口
netstat -tunlp | grep 8848
netstat -tunlp | grep 9848
netstat -tunlp | grep 9849
# 正确输出
# tcp        0      0 0.0.0.0:8848            0.0.0.0:*               LISTEN      1/java

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐