Linux学习-Tomcat下ManagerApp无法访问问题
Posted 丢爸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux学习-Tomcat下ManagerApp无法访问问题相关的知识,希望对你有一定的参考价值。
Tomcat首页下访问ManagerApp时报错
解决方法
#修改tomcat目录下conf/tomcat-users.xml文件如下
<?xml version="1.0" encoding="UTF-8"?>
<tomcat-users xmlns="http://tomcat.apache.org/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
version="1.0">
<role rolename="manager-gui"/>
<user username="tye" password="123456" roles="manager-gui"/>
</tomcat-users>
#修改webapps/manager/META-INF/context.xml
#默认情况下允许访问主机列表中只包含本机,只有本机可访问,添加需要访问的主机列表(支持通配符)
<?xml version="1.0" encoding="UTF-8"?>
<Context antiResourceLocking="false" privileged="true" >
<CookieProcessor className="org.apache.tomcat.util.http.Rfc6265CookieProcessor"
sameSiteCookies="strict" />
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\\.\\d+\\.\\d+\\.\\d+|::1|0:0:0:0:0:0:0:1 | 192.168.*" />
<Manager sessionAttributeValueClassNameFilter="java\\.lang\\.(?:Boolean|Integer|Long|Number|String)|org\\.apache\\.catalina\\.filters\\.CsrfPreventionFilter\\$LruCache(?:\\$1)?|java\\.util\\.(?:Linked)?HashMap"/>
</Context>
注:配置文件修改后需要重新启动Tomcat
以上是关于Linux学习-Tomcat下ManagerApp无法访问问题的主要内容,如果未能解决你的问题,请参考以下文章