Tomcat Manager 管理页面设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat Manager 管理页面设置相关的知识,希望对你有一定的参考价值。
1.添加允许访问的主机
[[email protected] tomcat]$ vim webapps/manager/META-INF/context.xml
<Context antiResourceLocking="false" privileged="true" >
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1|10.18.*$" /> <Manager
sessionAttributeValueClassNameFilter="java\.lang\.
(?:Boolean|Integer|Long|Number|String)|org\.apache\.catalina\.filters\.CsrfPreventionFil
ter\$LruCache(?:\$1)?|java\.util\.(?:Linked)?HashMap"/> </Context>
2.添加允许访问的用户和角色
[[email protected] tomcat]$ vim conf/tomcat-users.xml
在<tomcat-users>中添加:
<role rolename="manager-gui"/>
<role rolename="admin-gui"/>
<role rolename="manager-script"/>
<user username="tomcat" password="123" roles="admin-gui,manager-gui,manager-script"/>
以上是关于Tomcat Manager 管理页面设置的主要内容,如果未能解决你的问题,请参考以下文章