google-app-enginegae-eclipse-plugin

How to shutdown Google App Engine's local dev server from the command line?


I have run the local GAE app server (dev_appserver.py) from Eclipse and then Eclipse crashed. So I had to kill Eclipse and restart it. However, when Eclipse restarted, it lost connection to the still running GAE server and I cannot figure how to shut it down.


Solution

  • You have to kill the process of the devserver. This is os dependent. On linux use:

    ps aux| grep java 
    kill -9 <process id>
    

    On windows you can use tasklist and taskkill.