View the Tomcat Status page, manage apps, host management

Source: Internet
Author: User

Server Status

By clicking on this button we can view the status of Tomcat, click, pop up the 403 error page

By viewing the official documentation

Therefore, create a manager.xml

# Cat/usr/local/tomcat/conf/catalina/localhost/manager.xml<context privileged= "true" antiResourceLocking= " False "         docbase=" ${catalina.home}/webapps/manager ">  <valve classname=" Org.apache.catalina.valves.RemoteAddrValve "         allow=" ^.* "/></context>

Similarly, if we want to access host Manager, we need to create host-manager.xml

# Cat/usr/local/tomcat/conf/catalina/localhost/host-manager.xml <context privileged= "true" antiResourceLocking= "False"         docbase= "${catalina.home}/webapps/host-manager" >  <valve classname= " Org.apache.catalina.valves.RemoteAddrValve "         allow=" ^.* "/></context>

Finally, we need to modify the Tomcat-users.xml

  <role rolename= "Manager-gui"/>     #对应的角色  <role rolename= "Admin-gui"/>          #对应的角色  <user Username= "Tomcat" password= "Tomcat" roles= "Manager-gui,admin-gui"/>   #用户密码tomcat, password tomcat, with Manager-gui, Admin-gui role

After rebooting tomcat, we can use the above account password to access these three pages

View the Tomcat Status page, manage apps, host management

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.