gpt4 book ai didi

web-applications - 无法访问 Tomcat 6 管理器应用程序

转载 作者:行者123 更新时间:2023-11-28 21:46:50 25 4
gpt4 key购买 nike

当我尝试访问以下 URL 时,系统不断提示我输入用户名和密码:

http://localhost:8080/manager/html

应用服务器:Tomcat 6.0.35

浏览器:Firefox 3.6.18

操作系统:Centos 5.5

tomcat-users.xml 的内容:

<tomcat-users>
<role rolename="manager"/>
<user username="tomcat" password="tomcat" roles="manager"/>
</tomcat-users>

我用 sudo ./startup.sh 启动了 Tomcat

我用 sudo ./shutdown.sh 停止了 Tomcat

最佳答案

根据下面文档的链接,Apache Tomcat 6 的角色已更改。 http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html#Configuring_Manager_Application_Access

经理应用程序定义了四种角色:

manager-gui - Allows access to the html interface
manager-script - Allows access to the plain text interface
manager-jmx - Allows access to the JMX proxy interface
manager-status - Allows access to the read-only status pages

对于你的问题,试试这个:

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

使用用户密码登录。

100% 有效。

关于web-applications - 无法访问 Tomcat 6 管理器应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8726987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com