admin管理员组

文章数量:1401444

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.

本文标签: SSIS PackageERROR SECDoClientHandshake())SSL Security errorStack Overflow