[Web🌐] Several ports (8005, 8080) required by Tomcat...

에러 현상

- 톰캣 실행 시 아래의 에러 발생

 

Several ports (8005, 8080) required by Tomcat v9.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. cmd 창을 실행하여 명령어 netstat를 입력한다.
  2. 현재 실행중인 톰캣 프로세스(PID 번호)를 찾는다.
  3. 명령어 taskill를 입력하여 강제 종료한다.
  4. 다시 톰캣을 실행한다.
  5. 성공🎉
netstat -ano | findstr [포트번호]
taskkill /f /pid [pid번호]