gpt4 book ai didi

macos - 尝试杀死所有 Node 但在 osx 上失败

转载 作者:IT老高 更新时间:2023-10-28 23:13:18 26 4
gpt4 key购买 nike

希望在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

欢迎您的评论

最佳答案

ps aux 输出中没有包含关键字“node”的其他进程,除了来自 grep node。您试图杀死 grep Node 的进程,并且没有 Node 进程正在运行,这就是它失败的原因。

试试

sudo killall node

或者

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

关于macos - 尝试杀死所有 Node 但在 osx 上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19968069/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com