- 톰캣(Tomcat) 관리자 페이지 접속하기
톰캣 내에는 배포된 프로젝트를 view 단으로 관리할 수 있는 페이지가 있는데, 바로 Tomcat Manager이다.
Tomcat Manager는 'Tomcat url:port번호/manager/html' 로 접속이 가능하다.
그러나, Tomcat Manager 페이지에 들어가려면 아래와 같이 로그인이 필요하기에, 계정을 설정해줘야 한다.
- Tomcat 계정 설정하기
<role rolename="manager-gui"/>
<user username="test" password="test" roles="manager-gui"/>
더보기
manager-gui : HTML 인터페이스 허가
→ Access to the HTML interface.
manager-status : '서버 상태' 페이지만 허가
→ Access to the "Server Status" page only.
manager-script : 일반 텍스트 인터페이스 및 '서버 상태' 페이지 허가
→ Access to the tools-friendly plain text interface that is described in this document, and to the "Server Status" page.
manager-jmx : JMX 프록시 인터페이스 및 '서버 상태' 페이지 허가
→ Access to JMX proxy interface and to the "Server Status" page.