SyntaxHighlighter.all(); (윈도우/맥)사용중인 포트 kill 하기(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.) :: 게을러지고 싶어 부지런한 개발자

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

 

+ Recent posts