ubuntu布置tomcat8以上管理页面提示403问题

修改conf/tomcat-users.xml

<role rolename=”manager”/>
<role rolename=”manager-gui”/>
<role rolename=”admin”/>
<role rolename=”admin-gui”/>
<role rolename=”admin-script”/>
<user username=”user” password=”password” roles=”admin,admin-gui,admin-script,manager,manager-gui”/>

同时还需要修改conf/Catalina/localhost/manager.xml新建内容如下:

<Context privileged=”true” antiResourceLocking=”false”
docBase=”${catalina.home}/webapps/manager”>
<Valve className=”org.apache.catalina.valves.RemoteAddrValve” allow=”^.*$” />
</Context>

无须重启tomcat即可生效。

引用原文:

Each deployed webapp has a context.xml file that lives in $CATALINA_BASE/conf/[enginename]/[hostname] (conf/Catalina/localhost by default) and has the same name as the webapp (manager.xml in this case). If no file is present, default values are used.
So, you need to create a file conf/Catalina/localhost/manager.xml and specify the rule you want to allow remote access.