码迷,mamicode.com
首页 > 系统相关 > 详细

linux 访问tomcat 管理页面时 You are not authorized to view this page 403(真实可用)

时间:2015-01-15 20:18:28      阅读:1156      评论:0      收藏:0      [点我收藏+]

标签:

ava代码  收藏代码

    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 will contain the credentials to let you use this webapp.  
      
    You will need to add manager role to the config file listed above. For example:  
      
    <role rolename="manager"/>  
    <user username="tomcat" password="s3cret" roles="manager"/>  
      
    For more information - please see the Manager App HOW-TO.  

解决方法:

tomcat-users.xml 文件内容:

<?xml version=‘1.0‘ encoding=‘utf-8‘?>
<tomcat-users>
  <role rolename="manager"/>
  <user username="admin" password="admin" roles="manager"/>
</tomcat-users>


context.xml      文件中内容:

<Context>
    <WatchedResource>WEB-INF/web.xml</WatchedResource>   
    <Manager pathname="/manager" debug="0"  privileged="true" docBase="/home/oracle/tomcat/apache-tomcat-6.0.18/webapps/manager" />   
    <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" /> 

</Context>

linux 访问tomcat 管理页面时 You are not authorized to view this page 403(真实可用)

标签:

原文地址:http://www.cnblogs.com/langtianya/p/4227112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!