반응형
1. 시험환경
- 스프링부트
2. 목적
- 에러 해결
Web server failed to start. Port 8080 was already in use.
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
3. 적용
- 가끔씩 스프링 부트를 실행하면 발생하는 에러이다.
4. 결과
- 8080 포트를 사용하는 프로세스를 확인하고, 해당 프로세스를 kill 해야 한다.
netstat -ano | findstr [문자열]
taskkill /F /PID [프로세스ID]
※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.
반응형
'스프링 프레임워크' 카테고리의 다른 글
[security] 초기 설정 (0) | 2021.11.10 |
---|---|
[boot] STS를 이용한 스프링 부트 프로젝트 시작 (0) | 2021.06.23 |
[boot] Visual Studio Code를 이용한 스프링 부트 프로젝트 시작 (0) | 2021.06.16 |
스프링 log4jdbc-log4j2 라이브러리 설치 및 적용 (0) | 2021.06.08 |
log4j.xml 에러 디버깅 (The file cannot be validated as the XML definition. Create the DTD file or configure an XML catalog for this DTD.) (0) | 2021.06.08 |