IT/문제 해결
Could not contact localhost:8005. Tomcat may not be running error while shutdown tomcat 오류
나27
2017. 11. 6. 10:50
반응형
Could not contact localhost:8005. Tomcat may not be running error while shutdown tomcat 오류
startup.bat을 수행하고 나서 shutdown.bat을 해야하는데
톰캣이 실행되지 않은 상태에서 shutdown.bat을 실행하면 뜨는 오류이다
혹은 포트번호 8005번으로 실행되는 프로그램이 있을 수 있으니
톰캣 폴더->conf->server.xml 파일을 메모장이나 notepad++로 연 뒤
1 2 | <Server port="8005" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.startup.VersionLoggerListener" /> |
부분에서 8005를 바꿔보자
반응형