Reputation: 2519
Every time I stop my rails server with CTRL-Z, the process keeps running and I always have to kill -9 it in order to start the server again.
How can I make sure that the process is killed when I stop the server?
Upvotes: 0
Views: 626
Reputation: 6030
use CRTL + C
short key to stop the rails server, than there will be no need to use kill 9
every time.
Upvotes: 0
Reputation: 112
Try to use ctrl+c to stop your server always so that there is no need for using kill -9
to kill the process
Upvotes: 2