默认 · January 21, 2023 0

How to kill a process running on port 8080 in Windows

Table of Content

Find processes listening on port 8080. stop service on specific port.

Steps to kill process running on port 8080 in Windows.

Step 1: Start command prompt (Win + R = cmd)

Type : netstat -ano | findstr < Port Number >

It will give you "process id" of service running on port "8080".

Step 2:

taskkill /F /PID < Process Id >

%d bloggers like this: