标签:style blog class code c java
查看端口:
netstat -anp
查看制定端口:
netstat -anp | grep 9999
tcp 0 0 0.0.0.0:9999 0.0.0.0:* LISTEN 4806/node tcp 0 0 127.0.0.1:53928 127.0.0.1:9999 FIN_WAIT2 - tcp 1 0 127.0.0.1:9999 127.0.0.1:53928 CLOSE_WAIT 4806/node tcp 1 0 127.0.0.1:9999 127.0.0.1:53931 CLOSE_WAIT 4806/node
关闭端口对应的进程:
kill -9 4806
[1] + 4806 killed ift -m p 9999
这样,对应的端口就被关闭了
标签:style blog class code c java
原文地址:http://www.cnblogs.com/yingguan/p/3725162.html