I have run Webrick server (Redmine) using this command:
ruby script/rails server webrick -e production -d
. Now I would like to stop the server, but sending a SIGTERM signal or calling kill doesn't work. How to stop the server?
Asked
Active
Viewed 1,699 times
1

Lukasz Czerwinski
- 602
- 5
- 7
-
Can you post the output of `ps aux|grep ruby` ? – Tom O'Connor Aug 10 '13 at 21:15
2 Answers
1
Send it a SIGKILL
(e.g. by calling kill -9 <pid of ruby>
or kill -KILL <pid of ruby>
).

zhenech
- 1,492
- 9
- 13
-
That's what I did, but I hope there is a better solution - more process-friendly. – Lukasz Czerwinski Aug 23 '13 at 12:32