Port 8080 already in use

I was facing this problem. Port 8080 was already in use.


I was using Spring Tool Suite ( Version: 3.8.4.RELEASE).  port 8080 was not free.  to release this port  in windows operation system.

to view all the port command are 

1.   netstatus -ano 

to find the process id attached with port 8080

2.   netstat  -ano  |  findstr  8080

kill the process and release the port for further use.

3.   taskkill  /F  /PID  4500 ( provide your process id)


Comments

Popular posts from this blog

JPA mappedBy and JoinColumn

Aggregate function with spring data

Java Persistence API with Spring Data