我正在尝试在我的nodejs应用程序中使用ssh上传文件,尝试时,我收到错误“连接错误:等待握手时超时”。将连接设置为,< / p>
....
}).connect({
host: 'hostname without http',
port: 22,
debug: console.log,
readyTimeout: 99999,
username: 'name',
password: 'password'
});
如果我手动上传到服务器,它可以正常使用给定的主机名,用户名和密码。