Posts Tagged 'task'

Kill A Process Running On A Particular Port In Windows

This has become a very common scenario for me these days. I have my grails application running on localhost:8080 and at times I need to manually kill the process. I am writing down the steps so that I know where to look it up quickly.

  • List the processes running on ports
  • netstat -a -o -n
  • Find the one you need. I search for 0.0.0.0:8080 and get the PID.
    • taskkill /F /PID <pid>

    Task complete!

    Popularity: 2% [Continue Reading ?

    0