sh 搜索并杀死端口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 搜索并杀死端口相关的知识,希望对你有一定的参考价值。

 netstat -nap|grep 3000
 # returns list process using port 3000 last column show id of this process
 # tcp        0      0 127.0.0.1:3000          0.0.0.0:*               LISTEN      11249/node          
# tcp        0      0 127.0.0.1:3000          127.0.0.1:35804         ESTABLISHED 11249/node          
# tcp        0      0 127.0.0.1:35804         127.0.0.1:3000          ESTABLISHED 2392/chrome --type= 
# tcp        0      0 127.0.0.1:3000          127.0.0.1:35746         ESTABLISHED 11249/node          
# tcp        0      0 127.0.0.1:35878         127.0.0.1:3000          ESTABLISHED 2392/chrome --type= 
# tcp        0      0 127.0.0.1:3000          127.0.0.1:35878         ESTABLISHED 11249/node          
# tcp        0      0 127.0.0.1:35746         127.0.0.1:3000          ESTABLISHED 2392/chrome --type= 

kill -9 11249
#kills process 11249

以上是关于sh 搜索并杀死端口的主要内容,如果未能解决你的问题,请参考以下文章

sh ubunto端口杀死

sh 杀死端口上的进程

sh 杀死端口8080上正在运行的东西

sh 在端口上杀死进程

sh 杀死linux上的端口

sh 通过端口杀死服务