如何在 Azure 数据工厂通用 REST 链接服务中设置 TLS 版本?
How to set TLS version in Azure Data Factory Generic REST Linked Service?
我在 Azure 数据工厂中有一个通用 REST 链接服务,它将用作源。我需要将 SSL 协议设置为 TLS1.2,因为它在使用 QUIC (http/3) 的某些端点时失败。
关于在哪里设置它的任何想法?
In REST linked service enableServerCertificateValidation
property is
used to validate server-side TLS/SSL certificate when connecting to
the endpoint. This is set to true
by default.
此外,在 ADF 中,您可以在连接字符串中添加 EncryptionMethod=1
(在链接服务中)。这将使用 SSL/TLS 作为加密方法。使用的 TLS 版本是 1.2
我在 Azure 数据工厂中有一个通用 REST 链接服务,它将用作源。我需要将 SSL 协议设置为 TLS1.2,因为它在使用 QUIC (http/3) 的某些端点时失败。
关于在哪里设置它的任何想法?
In REST linked service
enableServerCertificateValidation
property is used to validate server-side TLS/SSL certificate when connecting to the endpoint. This is set totrue
by default.
此外,在 ADF 中,您可以在连接字符串中添加 EncryptionMethod=1
(在链接服务中)。这将使用 SSL/TLS 作为加密方法。使用的 TLS 版本是 1.2