配置 MDM 服务器仅响应 HTTPS 请求 - 7.3

Talend安装指南

Version
7.3
Language
中文(简体)
Operating system
Linux
Subscription type
订阅
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Activity Monitoring Console
Talend Administration Center
Talend Artifact Repository
Talend CommandLine
Talend Data Preparation
Talend Data Stewardship
Talend DQ Portal
Talend ESB
Talend Identity and Access Management
Talend Installer
Talend JobServer
Talend Log Server
Talend MDM Server
Talend MDM Web UI
Talend Repository Manager
Talend Runtime
Talend SAP RFC Server
Talend Studio
Content
安装和升级
Last publication date
2022-10-30
适用产品...

Data Fabric

MDM Platform

使用 SSL 支持配置,MDM 服务器可以同时响应 HTTP 和 HTTPS 请求。

为确保与 MDM 服务器通信的安全性,可以通过修改 <TomcatPath>/webapps/talendmdm/WEB-INF 目录下的 web.xml 文件来配置 MDM 服务器仅响应 HTTPS 请求。

打开 web.xml 文件,然后取消注释以下文本:

    <!-- Uncomment the following to configure webapp to always require HTTPS -->
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>HTTPSOnly</web-resource-name>
            <url-pattern>/*</url-pattern>
        </web-resource-collection>
        <user-data-constraint>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

这样配置之后,如果在浏览器中输入 http 开头的 URL,您将被自动重定向到 https 开头的安全 URL。