Docker

docker tomcat HTTP 상태 404 – 찾을 수 없음

pepega 2021. 10. 22. 15:32

synology nas를 사용했다

최신버전 다운받고

기본 설정 (포트번호 8080)으로 바로 실행 후 켜보니 404 오류가 나왔다.

GUI에서 안되길래 답답해서 ssh 환경에서 진행했다.

아래처럼 해결했다.

 

~$ docker run -d --name myTomcat -p 8080:8080 tomcat:latest

~$ docker exec -it myTomcat /bin/bash

~$ mv webapps webapps2

~$ mv webapps.dist/ webapps

~$ exit

IT WORKS

 

https://forums.docker.com/t/tomcat-give-error-404/95130

 

Tomcat give error 404

Hi guys, After running tomcat on ubuntu with port forwarding its give this error Can you help to understand whats the problem? HTTP Status 404 – Not found Type Status Report Description The origin server did not find a current representation for the targ

forums.docker.com