1

我正在尝试访问/manager由 NetBeans 7.1.2 安装的 Tomcat 实例的页面。

当我右键单击属性的相应树节点时,我得到这个:

在此处输入图像描述

这似乎表明我可以使用这些凭据,但它们不起作用。

当我查看时tomcat-users.xml,该用户似乎不存在:

<tomcat-users>
<!--
  NOTE:  By default, no user is included in the "manager-gui" role required
  to operate the "/manager/html" web application.  If you wish to use this app,
  you must define such a user - the username and password are arbitrary.
-->
<!--
  NOTE:  The sample user and role entries below are wrapped in a comment
  and thus are ignored when reading this file. Do not forget to remove
  <!.. ..> that surrounds them.
-->
<!--
  <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"/>
-->
</tomcat-users>

我应该创建它吗?如果是,我已经尝试过,但找不到合适的角色。什么是正确的添加行?(是的,我已经重新启动了 Tomcat)

4

1 回答 1

2

在属性对话框中,您可以看到两个变量:

  • CATALINA_HOME,您选择安装 Tomcat 的目录。例如c:\Program Files\Apache Software Foundation\Tomcat 6.0。Tomcat 使用此变量来查找其内部类和库。

  • CATALINA_BASE配置文件和目录的目录,例如Web应用程序目录。如果CATALINA_BASE未设置,则默认为 的值CATALINA_HOME。例如C:\Users\JVerstry\.netBeans\7.1.2\apache-tomcat-7.0.22.0_base

如果要使用管理器,则需要将管理器应用程序部署(复制)到位于C:\Users\JVerstry\.netBeans\7.1.2\apache-tomcat-7.0.22.0_base该应用程序不存在的正确文件夹中(请参阅目录conf/Catalina/localhost)并将角色添加manager-gui到用户

于 2012-07-17T20:12:53.720 回答