1

On my Windows 2012 server, I can run "mvn appengine:devserver_start" without any problems. When I run "mvn appengine:devserver_stop", it says "Stopping the development server" then "BUILD SUCCESS" but the process remains running and I have to kill it manually. Can't seem to find much information on these two goals (they're still pretty new) so wondering if this is a known issue or if it's something on my server.

I've tried both from TeamCity and running from the command line directly (with and without admin privileges).

Kyle Baley
  • 580
  • 1
  • 5
  • 16

1 Answers1

0

Hey you can stop it using command line prompt. get the PID using command

C:\netstat -a -n -o
and stop the process by another command

C:\Taskkill /PID <2004> /F

Full description with output is here.

Youdhveer
  • 529
  • 5
  • 10
  • We ended up using wmic instead: wmic process WHERE "CommandLine like '%%appengine%%' and CommandLine like '%%-p 8888%'" call terminate – Kyle Baley May 21 '14 at 01:57