Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 5 down vote accepted

No. grails run-app is intended to be run for development, interactively.

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

tomcat.deploy.username="manager"
tomcat.deploy.password="secret"
tomcat.deploy.url="http://myserver.com/manager"

to Config.groovy and then you can use

grails tomcat deploy
grails tomcat undeploy

to start and stop your application. Alternatively, you can use grails war to bundle your app into a war archive which all java app servers should be able to use.

If you really want to stop grails run-app without Ctrl+C, write a small controller that calls System.exit(0). Then browse to that URL, or write a small shell script or batch file that invokes it with e.g. wget or curl.

share|improve this answer
If you do go the route of a web-accessible controller action to kill the application, make sure to either remove it prior to deploying to production, or secure it heavily so that malicious users can't just kill your app. – cdeszaq May 7 '12 at 14:45

In Grails 2.1.0, a simple "exit" stops the server

share|improve this answer

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).

<target name="kill-app" description="--> Kills Grails web application" depends="">
  <touch file="${basedir}/.kill-run-app"/>
</target>
share|improve this answer

Quick way is to kill the java process:

ps -aux | grep grails

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.