After executing "grails run-app", except using "Ctrl + C", is there a command to shutdown it?
|
No. If you want to control grails as a service, you should deploy it to a web application container such as tomcat. The tomcat plugin allows you to easily deploy your app to tomcat, for example. Add lines like
to Config.groovy and then you can use
to start and stop your application. Alternatively, you can use If you really want to stop |
|||
|
|
I found a neat way that works on Grails 2.0.1 for me. This is a hack that uses a hack put in GrailsRun.groovy for shutting down servers after running functional tests. (see line 246) Create a file in the application basedir named .kill-run-app When Grails sees the .kill-run-app file, it issues a grailsServer.stop(). It also conveniently deletes the file. This may depend on having autoRecompile on. I'm not sure, like I said this is a hack. One day it will most likely cease to work when the GrailsRun.groovy script is changed. I created a simple Ant target to do this. Granted you will need another terminal to execute it (actually I run it from Eclipse).
|
|||
|
|
|
Quick way is to kill the java process:
kill "proess ID from above that is container to your application" |
||||
|
|