-
Several ports (8005, 8080) required by Tomcat v8.5 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 c..카테고리 없음 2020. 7. 7. 10:35
윈도우 + r 키를 눌러 cmd 창을 킨 후 netstat -a -n -o -p tcp 를 입력해서 해당 ip의 PID를 찾아
taskkill /f /pid (해당pid) 를 입력하여 포트번호를 죽이고 다시 서버를 스타트 해주면 된다.
필자인 경우 8080 = 16256이다 그리고 다시 netstat -a -n -o -p tcp 를 입력하면 kill 한 pid가 없어진걸 확인 할 수 있다.