如何在将 webrick 服务器作为守护进程调用后停止它(-d 选项)

如何在将 webrick 服务器作为守护进程调用后停止它(-d 选项)

我已经使用以下命令运行了 Webrick 服务器(Redmine):。 ruby script/rails server webrick -e production -d现在我想停止服务器,但发送 SIGTERM 信号或调用 kill 不起作用。如何停止服务器?

答案1

发送SIGKILL(例如致电kill -9 <pid of ruby>kill -KILL <pid of ruby>)。

答案2

您只能pkill ruby希望没有其他 ruby​​ 运行 ;-)

相关内容