windows 10 kill port 8080

When I tried to start spring boot application I got the following error

Web server failed to start. Port 8080 was already in use.

Action:

Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port.

Solution:

I executed following commands for kill 8080 port

>netstat -ano | findstr :

(Replace with the port number you want, but keep the colon)

>taskkill /PID /F

Published by

Purab

I am Purab from India, Software development is my profession and teaching is my passion. Programmers blog dedicated to the JAVA, Python, PHP, DevOps and Opensource Frameworks. Purab's Github Repo Youtube Chanel Video Tutorials Connect to on LinkedIn

Leave a Reply

Your email address will not be published.