How to use command to shutdown grails run-app

Viewed 21195

After executing grails run-app, except using Ctrl + C", is there a command to shutdown it?

9 Answers

Quick way is to kill the java process:

ps -aux | grep grails

kill "proess ID from above that is container to your application"

Related