SSIS SFTP : How to resolve “Unable to Upload: Socket read operation has timed out”?

这一生的挚爱 提交于 2019-12-05 21:41:29

SFTP does not use TLS/SSL (neither implicit nor explicit). Explicit/Implict TLS/SSL is used with FTP.

In other words SFTP is not FTP over TLS/SSL. It's a completely different and incompatible protocol.

So you are possibly trying to use SFTP component to connect to an implicit TLS/SSL FTP port (990). That cannot work.

  • Make sure you know what protocol you need to use
  • Use FTP task capable of TLS/SSL encryption, if it turns out that you need to use FTP.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!