코딩 관련/오류 관련
tomcat 에러(eclipse, vscode)
메리짱123
2020. 5. 10. 23:43
반응형
<eclipse>
Port 8080 required by Tomcat v9.0 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
<vscode>
The Tomcat connector configured to listen on port 8443 failed to start.
ERROR o.apache.catalina.util.LifecycleBase - Failed to initialize component [Connector[HTTP/1.1-8080]]
톰캣 서버 포트가 이미 사용중일 때 생기는 에러.
cmd > netstat -p tcp -ano | grep 포트번호
하여 pid 확인 후
taskkill /f /pid [pid] 로 종료 후 tomcat 재시작해주면 됨
반응형