码迷,mamicode.com
首页 > 其他好文 > 详细

Tomcat8配置tomcat-users.xml配置

时间:2018-07-17 16:46:02      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:http   host   重启   tomcat8   username   roles   tomcat   pass   dmi   

默认tomcat-user.xml中的角色和用户配置示例如下:

<!--

  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
  <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
  <user username="role1" password="<must-be-changed>" roles="role1"/>

-->

如果仅把上述内容去掉并修改密码,重启tomcat后访问http://localhost:8081/manager/html,会报403 Access Denied无法登录管理界面。

正确的配置如下:

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

原因是tomcat8中定义了以下4种角色,所以配置文件中的角色名称是不能任意填写的。

    • 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

Tomcat8配置tomcat-users.xml配置

标签:http   host   重启   tomcat8   username   roles   tomcat   pass   dmi   

原文地址:https://www.cnblogs.com/xd502djj/p/9323184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!