Fred Fickleberry III
Fred Fickleberry III

Reputation: 2519

Stopping rails server doesn't kill process

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

Answers (2)

Ramiz Raja
Ramiz Raja

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

rajith
rajith

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

Related Questions