티스토리 뷰
JAVA/JSP
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.
yulrang 2018. 6. 1. 18:10이미 사용중인 포트
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are 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).
해결 방법
1. 포트를 사용하고 있는 pid 확인하기
netstat -a -n -o -p tcp
2. 프로세스 종료시키기
taskkill /f /pid <pid>