我已经使用以下命令运行了 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 运行 ;-)
我已经使用以下命令运行了 Webrick 服务器(Redmine):。
ruby script/rails server webrick -e production -d
现在我想停止服务器,但发送 SIGTERM 信号或调用 kill 不起作用。如何停止服务器?
发送SIGKILL
(例如致电kill -9 <pid of ruby>
或kill -KILL <pid of ruby>
)。
您只能pkill ruby
希望没有其他 ruby 运行 ;-)