如何查找(并终止)侦听/使用TCP端口的进程?我在macOS上。

有时,在崩溃或一些错误之后,我的Rails应用程序会锁定端口3000。我用ps-ef找不到它。。。

运行时

rails server

我明白了

Address already in use - bind(2) (Errno::EADDRINUSE)

停止Node.js进程时也会出现同样的问题。即使在进程停止且应用程序停止运行后,端口3000仍被锁定。再次启动应用程序时

Address already in use (Errno::EADDRINUSE)

当前回答

快速简便的解决方案:

kill -9 $(lsof -ti:3000)

对于多个端口:

kill -9 $(lsof -ti:3000,3001)

#3000是要释放的端口

使用单行命令终止多个端口:

kill -9 $(lsof -ti:3000,3001)

#这里,多个端口3000和3001是要释放的端口

lsof-钛:3000

如果端口被占用,上述命令将返回如下内容:82500(进程ID)

lsof-钛:3001

82499

lsof-钛:30013000

8249982500

kill-9美元(lsof-ti:30013000)

在一个命令中终止82499和82500进程。

要在package.json脚本中使用它:

"scripts": {
   "start": "kill -9 $(lsof -ti:3000,3001) && npm start"
}

在终端中,您可以使用:

npm run start

其他回答

在.bash_profile中,创建终止3000进程的快捷方式:

terminate(){
  lsof -P | grep ':3000' | awk '{print $2}' | xargs kill -9 
}

然后,如果被阻止,调用$terminate。

查找打开的连接

lsof-i-P | grep-i“听”

按进程ID终止

终止-9“PID”

执行kill命令后,可能需要删除pid文件:

rm ~/mypath/myrailsapp/tmp/pids/server.pid

下面是一个helper bash函数,用于按名称或端口杀死多个进程

fkill() {
  for i in $@;do export q=$i;if [[ $i == :* ]];then lsof -i$i|sed -n '1!p';
  else ps aux|grep -i $i|grep -v grep;fi|awk '{print $2}'|\
  xargs -I@ sh -c 'kill -9 @&&printf "X %s->%s\n" $q @';done
}

用法:

$ fkill [process name] [process port]

例子:

$ fkill someapp :8080 node :3333 :9000

只在终端上写入

sudo kill -9 $(lsof -i :3000 -t)

希望,这是工作。