본문 바로가기
Spring

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

by 너츠너츠 2021. 12. 29.

오류 내용

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. 어플리케이션 속성을 추가합니다.

 

resources 안에 들어 있는 application.properties를 열고 안에  server.port=(원하는 포트번호)를 입력해주면 쉽게 해결됩니다.

 

 

 

2. 해당 포트를 사용 중인 프로세스를 종료해주면 됩니다.

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

반응형

댓글