프로그래밍/Spring Boot

[Spring Boot 실행 오류]The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.

Gooding 2021. 3. 1. 20:31
728x90
반응형

The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured

에러가 뜬 경우 cmd창을 켜서 포트 번호에 해당하는 프로세스를 중단시키고 재실행 해야 함

 

👉 netstat -ano | findstr 8080
8080에서 사용중인 프로세스 번호를 확인

👉 taskkill /f /pid (맨 오른쪽에 뜨는 번호 입력)
taskkill 을 이용하여 프로세스를 중단함

반응형