Who Is Running On Port 8080
A young idler, an old beggar. - William Shakespeare
How to find process running on port 8080 and kill it in Windows 10
- find the process on 8080
netstat -ano | findstr 8080
- locate the process id:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 33584
TCP [::]:8080 [::]:0 LISTENING 33584
- Kill the process by PID
taskkill /F /PID 33584
Thank you for reading, and happy coding!
–HTH–