How to shutdown Google App Engine's local dev server from the command line?
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
.