linux如何查看端口8000被哪个程序占用?请写详细命令。

2024-12-05 02:49:42
推荐回答(3个)
回答1:

netstat -tunlp |grep 8000

用这个命令就能看到是哪个程序了,最右面的是程序名

我这没有8000的程序,列一下22的

[root@localhost tmp]# netstat -tunlp |grep 22
tcp 0 0 0.0.0.0:42957 0.0.0.0:* LISTEN 2230/rpc.statd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2443/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2292/cupsd
tcp 0 0 :::22 :::* LISTEN 2443/sshd
tcp 0 0 ::1:631 :::* LISTEN 2292/cupsd
tcp 0 0 :::57609 :::* LISTEN 2230/rpc.statd
udp 0 0 0.0.0.0:5353 0.0.0.0:* 2211/avahi-daemon
udp 0 0 0.0.0.0:631 0.0.0.0:* 2292/cupsd
udp 0 0 0.0.0.0:37167 0.0.0.0:* 2230/rpc.statd
udp 0 0 0.0.0.0:52291 0.0.0.0:* 2211/avahi-daemon
udp 0 0 0.0.0.0:68 0.0.0.0:* 2207/dhclient
udp 0 0 0.0.0.0:710 0.0.0.0:* 2230/rpc.statd
udp 0 0 :::39834 :::* 2230/rpc.statd

回答2:

1、netstat -ntlp|grep 8000
2、lsof -i:8000
3、ps -ef |grep `netstat -ntlp|grep 8000|awk '{print $7}'|awk -F/ '{print $1}'`

回答3:

netstat -tunlp | grep 8000