English 中文(简体)
Tomcat Application 管理人员获得认证
原标题:Tomcat Application Manager won t authenticate

Im经营一个当地托马托克6服务器。 我可以从浏览器进入主要的行政网页。 I ve为Tomcat Application Manager创建了一个用户,配置了目录用户。

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

当我对TAM(例如时,便要求获得全权证书。 我进入我的Username/myPswd,而对话只是再次提出全权证书。

我在这里失踪了吗?

最佳回答

在Tomcat 7使用管理员应用程序所需的作用从Tomcat 6的单一主管角色改为以下四个角色:

  • 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

如果你使用Tomcat 6的话,你需要将作用改为“manager”。

问题回答

我也存在这样的问题,但我不知道,与我版本的管理人员/客户相比,我是否存在问题,或者如果我有新版本的经理的话,但我发现,尽管时间是6.x,我还是不得不使用遗产管理人。

  <role rolename="manager" /> 
  <user username="myUsername" password="myPswd" roles="manager" /> 




相关问题
Tomcat´s server.xml dynamic configuration

My web application uses the same database configuration as the application XYZ. I have a resource declaration for a context in server.xml, so I have a duplicated configuration (once for web ...

session transfer issue from Tomcat to ASP.Net

I am using Tomcat to host JSP and using IIS 7.0 to host aspx (C# + .Net 3.5 + VSTS 2008), and I have some session transfer issue from JSP page to ASPX page. JSP page is in one domain and all other ...

JSP exception - class not found (tomcat)

I m setting up an existing application on a new Tomcat 5.5 server connecting to a Postgres database (running on Debian Lenny). When I access it I get a series of stack traces with the following root ...

热门标签