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.
이러한 오류가 뜬다.. 이미 다른 곳에서 8080 포트를 사용하기 때문에 중지를 해야 시작할 수 있다.
그리고 윈도우/맥에 따라 터미널 창에 입력하는 command가 다름
< 윈도우에서는 아래와 같이 입력. 단, 꼭 관리자 모드로 실행할 것>
netstat -ano | findstr 8080
taskkill -f -pid 중지하려는pid
<맥-Mac>
lsof -i :8080
kill -9 중지하려는pid
'에러잡기 & 환경설정' 카테고리의 다른 글
[에러잡기]Error: Could not find or load main class ..Caused by: java.lang.ClassNotFoundException: (0) | 2020.05.13 |
---|---|
chmod 777 권한주기 (0) | 2020.04.24 |
인텔리제이 단축키 (0) | 2020.03.31 |
[에러잡기] No suitable driver found for jdbc:log4jdbc://디비서버주소 (0) | 2019.12.28 |
[에러잡기]"Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.6:resources failed: ".... (1) | 2019.12.17 |