我使用的是tomcat 9.0.1版。使用java 9在Linux机器上运行。
在我的tomcat-users.xml中,我添加了下面的
<role rolename="manager-gui"/>
<role rolename="manager"/>
<role rolename="manager-script"/>
<user username="admin" password="admin" roles="manager-gui,manager,manager-script"/>
在googling 之后添加到我的server.xml中的
<Realm className="org.apache.catalina.realm.MemoryRealm" />
之后我开始使用tomcat服务器,同时访问maneger gui得到以下错误
403 Access Denied
You are not authorized to view this page.
If you have not changed any configuration files, please examine the file conf/tomcat-users.xml in your installation. That file must contain the credentials to let you use this webapp.
请帮助
Tomcat的users.xml中
<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"/>
<role rolename="manager"/>
<role rolename="manager-script"/>
<user username="admin" password="admin" roles="manager-gui,manager,manager-script"/>
</tomcat-users>
答案 0 :(得分:0)
我认为403 ERROR
的解决方案是将您的IP/IPs
添加到文件
webapps/manager/META-INF/context.xml
部分:
<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="X.X.X.X"/>