반응형
Port 8090 required by Tomcat v8.5 Server at localhost is 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 창 열기
2. pid 확인
netstat -ao | findstr 8090(포트)
2. 프로세스 kill
taskkill /f /pid 15648 (pid)
정상적으로 실행되는 걸 확인할 수 있다.
반응형