Tomcat中配置Basic HTTP Authentication

简介: 在TOMCAT中,在webapps下的应用程序下的WEB-INF目录下的web.xml中的节中,配置如下信息: 点击(此处)折叠或打开!-- Define a security constraint on this application -->security-constr...
在TOMCAT中,在webapps下的应用程序下的WEB-INF目录下的web.xml中的节中,配置如下信息:

点击(此处)折叠或打开

  1. !-- Define a security constraint on this application -->
  2. security-constraint>
  3.   web-resource-collection>
  4.     web-resource-name>Entire Application/web-resource-name>
  5.     url-pattern>/*/url-pattern>
  6.   /web-resource-collection>
  7.   auth-constraint>
  8.     !-- This role is not in the default user directory -->
  9.     role-name>manager/role-name>
  10.   /auth-constraint>
  11. /security-constraint>
  12. !-- Define the login configuration for this application -->
  13. !--
  14. login-config>
  15.   auth-method>BASIC/auth-method>
  16.   realm-name>Tomcat Manager Application/realm-name>
  17. /login-config>
  18. -->
  19. !-- Security roles referenced by this web application -->
  20. security-role>
  21.   description>
  22.     The role that is required to log in to the Manager Application
  23.   /description>
  24.   role-name>manager/role-name>
  25. /security-role>
后,每次在IE中输入TOMCAT的地址后,将会弹出HTTP Authentication窗口,要求输入用户名和密码,而这个用户名和密码配置在tomcat-users.xml中,需要配置一个manager角色和具有这个角色的用户。如:

点击(此处)折叠或打开

  1. ?xml version='1.0' encoding='utf-8'?>
  2. tomcat-users>
  3.   role rolename="tomcat"/>
  4.   role rolename="role1"/>
  5.   role rolename="manager"/>
  6.   user username="both" password="tomcat" roles="tomcat,role1"/>
  7.   user username="tomcat" password="tomcat" roles="tomcat,manager"/>
  8.   user username="role1" password="tomcat" roles="role1"/>
  9. /tomcat-users>



目录
相关文章
|
3月前
|
网络协议 Java 应用服务中间件
tomcat配置域名及HTTPS
tomcat配置域名及HTTPS
|
1天前
|
安全 应用服务中间件 网络安全
49.3k star,本地 SSL 证书生成神器,轻松解决 HTTPS 配置痛点
mkcert是一款由Filippo Valsorda开发的免费开源工具,专为生成受信任的本地SSL/TLS证书而设计。它通过简单的命令自动生成并安装本地信任的证书,使本地环境中的HTTPS配置变得轻松无比。mkcert支持多个操作系统,已获得49.2K的GitHub Star,成为开发者首选的本地SSL工具。
|
2月前
|
监控 网络协议 应用服务中间件
【Tomcat源码分析】从零开始理解 HTTP 请求处理 (第一篇)
本文详细解析了Tomcat架构中复杂的`Connector`组件。作为客户端与服务器间沟通的桥梁,`Connector`负责接收请求、封装为`Request`和`Response`对象,并传递给`Container`处理。文章通过四个关键问题逐步剖析了`Connector`的工作原理,并深入探讨了其构造方法、`init()`与`start()`方法。通过分析`ProtocolHandler`、`Endpoint`等核心组件,揭示了`Connector`初始化及启动的全过程。本文适合希望深入了解Tomcat内部机制的读者。欢迎关注并点赞,持续更新中。如有问题,可搜索【码上遇见你】交流。
【Tomcat源码分析】从零开始理解 HTTP 请求处理 (第一篇)
|
1月前
|
安全 应用服务中间件 Shell
nginx配置https的ssl证书和域名
nginx配置https的ssl证书和域名
|
2月前
|
数据安全/隐私保护 Docker 容器
配置Harbor支持https功能实战篇
关于如何配置Harbor支持HTTPS功能的详细教程。
76 12
配置Harbor支持https功能实战篇
|
2月前
HAProxy的高级配置选项-配置haproxy支持https协议及服务器动态上下线
文章介绍了如何配置HAProxy以支持HTTPS协议和实现服务器的动态上下线。
133 8
HAProxy的高级配置选项-配置haproxy支持https协议及服务器动态上下线
|
2月前
|
分布式计算 Hadoop Devops
Hadoop集群配置https实战案例
本文提供了一个实战案例,详细介绍了如何在Hadoop集群中配置HTTPS,包括生成私钥和证书文件、配置keystore和truststore、修改hdfs-site.xml和ssl-client.xml文件,以及重启Hadoop集群的步骤,并提供了一些常见问题的故障排除方法。
67 3
Hadoop集群配置https实战案例
|
2月前
|
Linux Docker Windows
Docker配置https证书案例
本文介绍了如何为Docker的Harbor服务配置HTTPS证书,包括安装Docker和Harbor、修改配置文件以使用证书、生成自签名证书、配置证书以及验证配置的步骤。
145 2
Docker配置https证书案例
|
2月前
|
应用服务中间件 网络安全 Apache
HTTPS配置
HTTPS配置
118 11
|
2月前
|
监控 安全 应用服务中间件
如何配置HTTPS协议?
如何配置HTTPS协议?
146 4