5

我无法在 Tomcat 中查看服务器状态和 Manager App 页面。

在此处输入图像描述

虽然我在 中配置了用户名和密码tomcat-users.xml,但它不接受该组合并显示此消息:

401 Unauthorized

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.

For example, to add the manager-gui role to a user named tomcat with a password of s3cret, add the following to the config file listed above.

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

Note that for Tomcat 7 onwards, the roles required to use the manager application were changed from the single manager role to the following four roles. You will need to assign the role(s) required for the functionality you wish to access.

manager-gui - allows access to the HTML GUI and the status pages
manager-script - allows access to the text interface and the status pages
manager-jmx - allows access to the JMX proxy and the status pages
manager-status - allows access to the status pages only

The HTML interface is protected against CSRF but the text and JMX interfaces are not. To maintain the CSRF protection:

Users with the manager-gui role should not be granted either the manager-script or manager-jmx roles.
If the text or jmx interfaces are accessed through a browser (e.g. for testing since these interfaces are intended for tools not humans) then the browser must be closed afterwards to terminate the session.

我编辑tomcat-users.xml为:

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

我把用户名和密码设置为suhail. 为什么它不接受组合?

4

6 回答 6

6

我也很挣扎。这个对我有用。将以下内容复制粘贴到 tomcat-users.xml

<?xml version='1.0' encoding='utf-8'?>

<tomcat-users>
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="role1" password="tomcat" roles="role1"/>
 -->
<role rolename="manager-gui" />
<user username="jeril" password="1" roles="manager-gui"/>
</tomcat-users>
于 2013-02-20T15:12:33.937 回答
2

在您的 tomcat-users.xml 中添加以下行以检查服务器状态和管理器应用程序。

<user username="username" password="password" roles="admin-gui,manager-gui"/>
于 2012-07-23T11:31:10.387 回答
0

在您的 tomcat-user.xml 中复制粘贴以下行并更改用户名和密码

 <?xml version='1.0'?>
 <tomcat-users>
       <user name="username" password="password" roles="admin-gui,manager-gui" />
 </tomcat-users>

重启tomcat

于 2012-07-23T11:32:17.017 回答
0

Tomcat我从我的 IDE (Netbeans)启动服务器。所以,我不得不从 Netbeans 设置更改配置:

在此处输入图像描述

现在它按预期工作!

于 2012-07-23T15:48:26.997 回答
0

这对我有用……您只需要在设置用户角色时小心。某些用户角色不能使用相同的用户名。

例如:

不应授予具有 manager-gui 角色的用户 manager-script 或 manager-jmx 角色。如果文本或 jmx 接口是通过浏览器访问的(例如,用于测试,因为这些接口是为工具而非人类设计的),那么之后必须关闭浏览器以终止会话。

不应授予具有 admin-gui 角色的用户 admin-script 角色。如果文本界面是通过浏览器访问的(例如,用于测试,因为该界面是为工具而非人类设计的),那么之后必须关闭浏览器以终止会话。

所以这就是我所做的,我能够查看所有三个服务器状态、管理器应用程序、主机管理器

我希望这对你有帮助..

<tomcat-users>
    <role rolename="admin-gui"/>
    <role rolename="manager-gui" />
    <user username="Your User Name" password="Your Password" roles="manager-gui, admin-gui"/>
</tomcat-users>

确保关闭tomcat并重新启动它!!!

于 2013-05-28T06:29:45.007 回答
0

仅供参考:我遇到了相同的 401 错误(在 Tomcat 7 中),但它基于一个完全不同的问题,该问题源于从网络复制和粘贴 tomcat-users.xml 定义:有两种类型的双引号(不同的 Unicode 字符) 看起来几乎相同,因此我忽略了这个问题几个小时!

一种类型的双引号(有效的)是直型“(Unicode 字符 U+0022),另一种(无效)是弯曲或卷曲或斜体或'右侧'类型”(Unicode字符 U+201D)。

用正确的双引号替换不正确的双引号后,我的登录工作完美无缺。

让我发现这个问题的线索是查看报告以下错误的 catalina.out(注意:在我的 tomcat-users.xml 文件中,我删除了所有评论以确保我在隔离问题时处理的是纯 XML 语句) :

SEVERE: Parse Fatal Error at line 4 column 18: Open quote is expected for attribute "{1}" associated with an  element type  "rolename".

替换不正确的引号后,我的登录工作完美无缺。

于 2014-08-30T02:36:58.880 回答