`

tomcat中manager配置

阅读更多

运行tomcat当启动后点击:

http://localhost:8080/manager/html出现登陆界面要求输入用户名和密码

用户名和密码在以下文件中修改:

(1)在tomcat的安装目录中找到E:\tomcat6.0.26\conf文件

(2)使用文本编辑器打开conf下的tomcat-users.xml文件

(3)添加用户角色,名称和登陆密码:

  改动前:

<?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users>
<!--
  NOTE:  By default, no user is included in the "manager" role required
  to operate the "/manager" 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"/>
  <role rolename="manager"/>
  <role rolename="admin"/>

-->
</tomcat-users>

 

添加后

<?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users>
<!--
  NOTE:  By default, no user is included in the "manager" role required
  to operate the "/manager" 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"/>
  <role rolename="manager"/>
  <role rolename="admin"/>
-->
  <role rolename="manager"/>
  <role rolename="admin"/>
  <user username="admin" password="tomcat" roles="admin"/>
  <user username="manager" password="manager" roles="manager" />

</tomcat-users>
说明:
<role rolename="manager"/>

<user username="manager" password="manager" roles="manager" />
用来登陆tomcat manager时用

<role rolename="admin"/>
 <user username="admin" password="tomcat" roles="admin"/>

用来登陆tomcat admin用的

 

 

 

 

分享到:
评论

相关推荐

    Tomcat_Manager_用户名和密码配置.

    Tomcat Manager 是 Tomcat 服务器提供的一个 Web 应用程序,用于管理和配置 Tomcat 服务器。它提供了一个基于 Web 的界面,允许用户远程管理 Tomcat 服务器,包括部署、停止、重启应用程序,查看服务器状态等。 ...

    tomcat-manager的用户名密码配置

    通过上述步骤,你可以成功地为Tomcat Manager配置用户名和密码,实现对Tomcat服务器的安全管理。需要注意的是,为了保证系统的安全性,建议定期修改密码,并尽量避免使用过于简单的密码。同时,也可以通过配置防火墙...

    tomcat manager配置

    ### Tomcat Manager App 配置详解 #### 一、Tomcat Manager App 概述 Tomcat Manager App 是 Apache Tomcat 提供的一个内置的 Web 应用程序,它为管理员提供了图形化的界面来管理部署在 Tomcat 服务器上的应用程序...

    基于tomcat的redis配置

    Tomcat下redias配置: 1. context.xml 中的加入 &lt;Valve className="com.orangefunction.tomcat6.redissessions.RedisSessionHandlerValve"/&gt; &lt;Manager className=...

    Tomcat manager 配置.docx

    《Tomcat Manager配置详解》 在日常的IT运维工作中,频繁地进行应用发布往往是一项繁琐的任务,特别是当应用服务是Tomcat,且服务器系统为Windows 2003时,远程登录、拷贝文件、重启服务等步骤确实让人头疼。然而,...

    tomcat-redis-session-manager实现session共享 配置文件

    "tomcat-redis-session-manager"是一个解决方案,它将用户的Session信息存储在Redis缓存服务器中,从而实现跨服务器的Session共享。本篇文章将深入探讨这个话题,包括它的原理、配置以及实际应用。 **一、Session...

    Tomcat的安装manager的使用以及兼容

    **问题背景**: 许多用户在使用Tomcat Manager时会遇到无法登录的问题,这通常是由于默认配置中没有为Manager角色定义用户所导致的。 **解决方案**: 1. **关闭Tomcat服务**: 使用`shutdown.bat`命令关闭Tomcat。 2...

    tomcat-redis-session-manager包集合下载(tomcat8)

    【描述】中提到的"所需的tomcat-redis-session-manager所有的jar包下载"意味着我们需要了解如何配置和使用这个第三方库,以便在Tomcat8环境中存储和检索用户的session数据到Redis缓存系统。测试环境使用的是JDK1.8,...

    tomcat安装和配置

    【标题】:Tomcat安装与配置 在Java Web开发中,Tomcat是一个广泛使用的开源应用服务器,主要用于运行Servlet和JSP应用。本教程将详细阐述如何进行Tomcat的安装和配置,确保您能够全面理解这一过程。 【描述】:本...

    ngnix tomcat7 redis session manager jar包

    3. **配置示例**:可能包含示例的`context.xml`或`server.xml`配置文件,说明如何在Tomcat7的配置中引入RedisSessionManager。 4. **依赖库**:可能还包括其他必要的依赖库,如`slf4j.jar`(日志框架)或者`commons...

    Tomcat服务器配置 视频教程 Tomcat视频

    6. **虚拟主机配置**:如何在同一台机器上配置多个独立的Tomcat实例,或者在单个Tomcat中设置多个虚拟主机,以托管不同的Web应用。 7. **部署Web应用**:演示如何将WAR文件或已解压的目录放入webapps目录,以及如何...

    Tomcat的安装及配置教程步骤

    以上是Tomcat安装和配置的基本流程,实际使用中可能需要根据具体需求进行更复杂的配置。在学习过程中,阅读官方文档、查阅社区资源和实践操作是提升技能的关键。希望这个教程能帮助你顺利开始Tomcat的使用。

    tomcat-redis-session-manager的jar包-包含Tomcat7和Tomcat8

    在配置Tomcat-Redis-Session-Manager时,开发者需要在Tomcat的`context.xml`文件中添加相关的manager配置,指定使用Redis作为session存储。这通常涉及设置`Manager`元素的`className`属性为`org.apache.catalina....

    tomcat安装及配置教程

    在本教程中,我们将深入探讨如何安装并配置Apache Tomcat,这是一个广泛应用的Java Servlet容器,用于部署Web应用程序。Tomcat是开源软件,遵循Apache Software Foundation的Apache 2.0许可证,是Java EE(现在称为...

    tomcat9用户访问配置问题_403Access Denied 无法访问server、Manager、Host Manager

    在使用Tomcat 9 进行Web应用部署时,可能会遇到一种较为常见的问题:即配置完成后,虽然能够正常访问Web应用,但在尝试访问后台管理界面(如Server Status、Manager App、Host Manager)时却收到“403 Access Denied...

    Linux下JDK+Tomcat安装配置

    在本文档中,我们将详细介绍如何在CentOS系统上安装和配置JDK和Tomcat环境。以下是整个安装和配置过程的步骤。 一、下载所需文件 在开始安装之前,需要下载两个必要的文件:jdk-7u25-linux-x64.rpm和apache-tomcat...

    tomcat10种配置技巧

    它也需要在`CATALINA_BASE/webapps/manager.xml`中配置,并在`tomcat-users.xml`中添加具有"manager"角色的用户。这使得管理员能够通过Web界面执行应用管理任务。 3. **调整内存设置** 为了确保Tomcat能处理大量...

    tomcat服务参数配置

    ### Tomcat服务参数配置详解 #### 一、Tomcat简介及安装 Tomcat是一款开源的Servlet容器,由Apache软件基金会下属的Jakarta项目开发。它实现了对Servlet和JavaServer Pages (JSP)技术的支持,并提供了作为Web...

    Tomcat7配置详解中文文档

    5) Manager 利用Manager应用程序管理web application部署,以及在tomcat运行时重新部署 6) Realms and AAA 介绍Realms(域)的概念,以及怎么配置权限管理。 7) Security Manager 介绍怎么配置和使用Security ...

    tomcat集群配置

    2. **共享session配置:** 在`&lt;Manager&gt;`元素中设置`sharedSessionConfig`属性为true,启用集群间会话共享。 3. **负载均衡器配置:** 配置如Nginx,设定相应的负载均衡策略,并将请求转发到各个Tomcat实例。 4. **...

Global site tag (gtag.js) - Google Analytics