浏览文章

文章信息

查看端口占用情况并关闭端口占用程序 17194

1、查找端口占用程序

lsof -i:80 
#引文解释list of interface:80,汉语解释:列出的类型是端口,端口号是80的有关信息

得到类似结果:

root@ip-172-31-17-91:/www/wwwroot/msg.havefunchats.com/test# lsof -i:1337
COMMAND   PID USER   FD   TYPE  DEVICE SIZE/OFF NODE NAME
node    21256 root   12u  IPv6 8812326      0t0  TCP *:1337 (LISTEN)

2、关闭程序

查找到pid:

并执行

kill 21256

解释:pid->processe id 进程ID

原创