zoukankan      html  css  js  c++  java
  • (转)Tomcat 7 访问 Manager 和 Host Manager

    配置好 Tomcat 7.0 后,在 tomcat-users.xml 中配置用户角色来访问 localhost:8080 的这样三个按钮总出现问题:

    • Server Status
    • Manager App
    • Host Manager

    要么是三个都不能访问,要么是只能访问其中一个,或者两个。

    后来发现是角色没有添加全,特别是针对第三个按钮“Host Manager”

     

    其实解决点在这样两个症结上:

    • 前两个按钮和manager相关,具体角色名为
      • manager-gui - allows access to the HTML GUI and the status pages
      • manager-script - allows access to the text interface and the status pages
      • manager-jmx - allows access to the JMX proxy and the status pages
      • manager-status - allows access to the status pages only
    • 第三个按钮和admin相关,具体角色名为
      •     admin-gui - allows access to the HTML GUI and the status pages
      •     admin-script - allows access to the text interface and the status pages

    所以在 tomcat-users.xml 如果不注重安全性,只是测试用的话,对应部分可以简单地写成下面这个样子:

    ---------------------------------

      <role rolename="admin"/>
      <role rolename="manager-script"/>
      <role rolename="manager-gui"/>
      <role rolename="manager-jmx"/>
      <role rolename="manager-status"/>
      <role rolename="admin-gui"/>
      <role rolename="admin-script"/>

      <user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui,admin-script"/>

    ---------------------------------

     

    很多网页没说到第三个按钮针对的角色。不添加admin-gui和admin-script的话,第三个按钮就会出现访问被拒绝的问题(access denied ....)。

    详细说明可以参考 Tomcat 的文档(http://tomcat.apache.org/migration.html#Manager_application):

     

    Manager application

    The Manager application has been re-structured for Tomcat 7 onwards and some URLs have changed. All URLs used to access the Manager application should now start with one of the following options:

    • <ContextPath>/html for the HTML GUI
    • <ContextPath>/text for the text interface
    • <ContextPath>/jmxproxy for the JMX proxy
    • <ContextPath>/status for the status pages

    Note that the URL for the text interface has changed from "<ContextPath>" to "<ContextPath>/text".

    The roles required to use the Manager application were changed from the singlemanager role to the following four roles. You will need to assign the role(s) required for the functionality you wish to access.

    • manager-gui - allows access to the HTML GUI and the status pages
    • manager-script - allows access to the text interface and the status pages
    • manager-jmx - allows access to the JMX proxy and the status pages
    • manager-status - allows access to the status pages only

    The HTML interface is protected against CSRF but the text and JMX interfaces are not. To maintain the CSRF protection:

    • users with the manager-gui role should not be granted either the manager-script ormanager-jmx roles.
    • if the text or jmx interfaces are accessed through a browser (e.g. for testing since these interfaces are intended for tools not humans) then the browser must be closed afterwards to terminate the session.

    The roles command has been removed from the Manager application since it did not work with the default configuration and most Realms do not support providing a list of roles.

     

    Host Manager application

    The Host Manager application has been re-structured for Tomcat 7 onwards and some URLs have changed. All URLs used to access the Host Manager application should now start with one of the following options:

    • <ContextPath>/html for the HTML GUI
    • <ContextPath>/text for the text interface

    Note that the URL for the text interface has changed from "<ContextPath>" to "<ContextPath>/text".

    The roles required to use the Host Manager application were changed from the singleadmin role to the following two roles. You will need to assign the role(s) required for the functionality you wish to access.

    • admin-gui - allows access to the HTML GUI and the status pages
    • admin-script - allows access to the text interface and the status pages

    The HTML interface is protected against CSRF but the text interface is not. To maintain the CSRF protection:

    • users with the admin-gui role should not be granted the admin-script role.
    • if the text interface is accessed through a browser (e.g. for testing since this inteface is intended for tools not humans) then the browser must be closed afterwards to terminate the session.
  • 相关阅读:
    计算机网络为什么是这样样子?
    MySQL技术内幕 InnoDB存储引擎 B+树索引的使用 笔记
    后端性能-batch 化的想法
    稳定高效的服务来自于稳定而合理的数据结构
    gRPC 学习了解记录
    Go 进阶训练营 Week02: error 错误处理
    生活小感受
    Nginx 499 排查到docker 中一个进程一直在空转
    方法论和原理总结
    Debug
  • 原文地址:https://www.cnblogs.com/greywolf/p/3211116.html
Copyright © 2011-2022 走看看