尝试杀死所有节点但在osx上失败

时间:2013-11-14 01:53:46

标签: macos node.js

我希望在mac osx上重启nodejs

$ps aux | grep node
mymac      20215   0.0  0.0  2432768    460 s000  R+    9:49AM   0:00.00 grep node

有一个PID 20215,我试图杀死进程

kill -2 20215

报告

-bash: kill: (20215) - No such process

欢迎评论

1 个答案:

答案 0 :(得分:33)

除了ps aux之外,您的grep node输出中没有包含关键字“node”的其他流程。您正试图终止grep节点的进程,并且没有节点进程正在运行,这就是它失败的原因。

尝试

sudo killall node

或者

sudo kill -9 `ps aux | grep node | tail -1 | awk '{print $2}'`