最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

SSIS Package - ERROR: SECDoClientHandshake()).]SSL Security error - Stack Overflow

programmeradmin4浏览0评论

We are trying to run an SSIS Package via SQL Job. The package is located on another server than the server where the job is running the package. We are getting this error:

[DBNETLIB][ConnectionOpen (SECDoClientHandshake()).]SSL Security error."

This usually happens because:

The server requires TLS 1.2, but the client does not support it.
The OLE DB provider is outdated and does not support the required security protocol.
There is a mismatch in encryption settings between the client and server.
The SSIS package is running under an account that does not have proper permissions.

We tried several things already.

  1. Force the SSIS package to run in TLS 1.2:

    System.Net.ServicePointManager.SecurityProtocol = (System.Net.SecurityProtocolType)3072;

  2. Enabled TLS 1.2 on the server where the package is located.

Any suggestions would be helpful.

发布评论

评论列表(0)

  1. 暂无评论