windowstomcatkill-process

Kill tomcat service running on any port, Windows


Kill tomcat service running on any port, Windows using command promt like 8080/ 8005


Solution

  • 1) Go to (Open) Command Prompt (Press Window + R then type cmd Run this).

    2) Run following commands

    For all listening ports

    netstat -aon | find /i "listening"

    Apply port filter

    netstat -aon |find /i "listening" |find "8080"

    Finally with the PID we can run the following command to kill the process

    3) Copy PID from result set

    taskkill /F /PID

    Ex: taskkill /F /PID 189

    Sometimes you need to run Command Prompt with Administrator privileges

    Done !!! you can start your service now.