[Spring] [Tomcat] Several ports (8005, 8080, 8009) required by Tomcat v8.0 Server at localhost are already in use.
오류 메시지 Several ports (8005, 8080, 8009) required by Tomcat v8.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). 원인 was가 비정상적인 종료로 인해 포트를 계속 사용중. 해결 netstat -a -n -o -p tcp 위의 명령어를 사용해 아래와 같이 포트를 사용하고 있는 PID를 확인하여 강제 종료..
2021.10.11