- Big Data Platform
- Data Fabric
- Data Management Platform
- Data Services Platform
- MDM Platform
- Qlik Talend Cloud Enterprise Edition
- Qlik Talend Cloud Premium Edition
- Real-Time Big Data Platform
步骤
-
打开 dq_dict\config\data-quality.properties 文件。
-
要保护与 MongoDB 的连接,请编辑以下行:
dq.mongo.ssl=true
dq.mongo.ssl.trust-store=<path_to_truststore>
dq.mongo.ssl.trust-store-password=<truststore_password>
-
要仅使用通信加密来保护与 Kafka 的连接,请编辑以下行:
spring.cloud.stream.kafka.binder.configuration.security.protocol=SSL
-
取消注释并编辑以下行:
spring.cloud.stream.kafka.binder.configuration.ssl.truststore.location=<path_to_truststore>
spring.cloud.stream.kafka.binder.configuration.ssl.truststore.password=<truststore_password>
-
要使用身份验证来保护与 Kafka 的连接,请取消注释并编辑以下行:
spring.cloud.stream.kafka.binder.configuration.ssl.keystore.location=<path_to_keystore>
spring.cloud.stream.kafka.binder.configuration.ssl.keystore.password=<keystore_password>
spring.cloud.stream.kafka.binder.configuration.ssl.key.password=<key_password>
-
要保护与 Talend Identity and Access Management 的连接,请将下面的 URL 从 http 更改为 https:
oidc.url=https://<iam_url:port>/oidc
scim.url=https://<iam_url:port>/scim
请注意,还必须定义通信加密参数以使用身份验证。