-1

我想删除当前处于 LISTEN 状态的端口。

这是我打字的时候netstat -anp | grep LISTEN | grep 8080

(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp        0      0 127.0.0.1:8080          0.0.0.0:*               LISTEN      -  

如您所见,没有进程ID。

我也尝试过fuser -n 8080 tcpand fuser 8080/tcp,但是这些命令什么也没打印。

如何安全地丢弃端口?- 我最初的计划是 find pid 和 command kill,但是有没有更安全的方法来停止端口?

谢谢。

4

1 回答 1

0

我发现。它是由用户引起的。如果我尝试使用 user root。它打印pid

[iceman ~]$ sudo netstat -anp | grep 8080
tcp        0      0 127.0.0.1:8080          0.0.0.0:*               LISTEN      47950/uni*** 
于 2018-10-04T06:02:55.990 回答