Tomcat Manager

简介:
安装Tomcat5.5之后,发现Tomcat Manager登陆不进去.
Tomcat Manager应用程序位于server\webapps下,查看Web.xml
发现这段代码: 
<auth-constraint>
    <role-name>manager</role-name>
</auth-constraint>
 <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Tomcat Manager Application</realm-name>
</login-config>
<security-role>
    <description>
      The role that is required to log in to the Manager Application
    </description>
    <role-name>manager</role-name>
  </security-role>
Manager应用程序采用BASIC,只有manager角色下的成员才可以访问资源。
打开conf/tomcat-users.xml文件,添加
  
<user username="admin" password="pwd" roles="manager"/>
访问 http://localhost:8001/manager/html,Great,success!

本文转自 anranran 51CTO博客,原文链接:http://blog.51cto.com/guojuanjun/321740
相关文章
|
应用服务中间件
Tomcat登录进入manager管理界面
Tomcat登录进入manager管理界面
175 0
Tomcat登录进入manager管理界面
|
应用服务中间件 Java
|
应用服务中间件 Apache
|
Java 应用服务中间件
|
应用服务中间件
tomcat manager源代码分析
http://sishuok.com/forum/blogPost/list/4201.html http://blog.
543 0
|
3月前
|
安全 应用服务中间件 网络安全
Tomcat如何配置PFX证书?
【10月更文挑战第2天】Tomcat如何配置PFX证书?
269 7