본문으로 바로가기

[Spring Boot]Web server failed to start. Port 8080 was already in use.

category 오류해결 2020. 5. 22. 02:29
오류 내용
***************************
APPLICATION FAILED TO START
***************************
Description: 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.

 

해결방법

포트를 변경한다. 변경방법은 아래의 방법들 중 한가지를 선택해서 수행하면 된다.

 

1. 어플리케이션의 속성을 추가한다.

server.port=8081

어플리케이션 속성 추가하는 방법

*출처 : https://www.javatpoint.com/spring-boot-properties

 

 

2. CMD 창을 이용한다.

java -jar pathToJar/jar-name-1.0.0.jar --server.port=8081

 

해당 포트를 사용 중인 프로세스를 죽인다.

https://stackoverflow.com/questions/34253779/tomcat-server-error-port-8080-already-in-use

 

 

[출처]

https://stackoverflow.com/questions/49075894/java-spring-boot-fails-to-start-web-server-on-port-8080/49075946

https://stackoverflow.com/questions/20735205/launching-spring-application-address-already-in-use