本文介绍了无法在Data Factory V2上设置SFTP连接,出现超时错误.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我想在Data Factory V2上设置从Azure上的SFTP VM到Azure Data Lake Storage的复制活动,但是当我尝试通过基本步骤将SFTP连接配置为源时,总是出现超时错误.

有没有建立此连接的最佳实践?或其他任何方式?

错误:连接到Sftp服务器"xx.xx.xx.xx"时遇到网络问题,SocketErrorCode:"TimedOut".

SFTP代码:

{
"名称":" SftpConnection" ;,
类型":"Microsoft.DataFactory/factories/linkedservices",
属性":{
" type":"Sftp",
"typeProperties":{
主机":"xx.xx.xx.xx",
端口":22,
"skipHostKeyValidation":true,
"authenticationType":"SshPublicKey",
" userName":"sftpaccount",
"encryptedCredential":"OpenSSH KEY FORMAT"
}
}
}

Hi,

I would like to set up a copy activity on my Data Factory V2 from an SFTP VM On Azure to an Azure Data Lake Storage,  but I got always a time Out Error when I try to configure the SFTP Connection as a source with the basic steps.

is there any best practices to set up this connection ? or any other ways to do this ? 

Error : Meet network issue when connect to Sftp server 'xx.xx.xx.xx', SocketErrorCode: 'TimedOut'.

SFTP code :

{
"name": "SftpConnection",
"type": "Microsoft.DataFactory/factories/linkedservices",
"properties": {
"type": "Sftp",
"typeProperties": {
"host": "xx.xx.xx.xx",
"port": 22,
"skipHostKeyValidation": true,
"authenticationType": "SshPublicKey",
"userName": "sftpaccount",
"encryptedCredential": "OpenSSH KEY FORMAT"
}
}
}

推荐答案


这篇关于无法在Data Factory V2上设置SFTP连接,出现超时错误.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 08:40