Fabric 说“没有到主机的路由”,尽管我可以通过 SSH 访问它
我在使用 Fabric 将文件上传到服务器时遇到一些问题。我得到以下输出:
Fatal error: Low level socket error connecting to host ssh.example.com: No route to host
Aborting.
奇怪的是,当我使用 ssh 手动连接时(相同的主机字符串,我从 fabfile 中复制粘贴它以确保),它按预期完美工作。我还可以使用 scp
手动将文件复制到同一位置。
我的 Fabfile 中的违规行是这样的,如果有帮助的话:
put('media.tgz','/home/private/media.tgz')
另外,我使用 @hosts()
装饰器连接到不同的主机到我的 fabfile 的其余部分(此特定方法上传静态媒体,它是从与应用程序本身不同的地方提供的)。
I'm having some issues uploading a file to a server with Fabric. I get the following output:
Fatal error: Low level socket error connecting to host ssh.example.com: No route to host
Aborting.
The weird thing is, when I connect manually using ssh
(same host string, I copy-pasted it from the fabfile to make sure), it works perfectly as expected. I can also use scp
to copy the file to the same location manually.
The offending line in my Fabfile is this, if it helps:
put('media.tgz','/home/private/media.tgz')
Also, I'm connecting to a different host to the rest of my fabfile using the @hosts()
decorator (this particular method uploads static media, which is served from somewhere different to the app itself).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的问题。没有调查过,但使用 IP 地址而不是主机名有帮助。这个特定的主机有一个 IPv6 AAAA 记录,但我的客户端没有 IPv6 连接,也许这就是原因。华泰
I had the same issue. Had not investigated it but using the IP-Address instead the hostname helped. This particular host had an IPv6 AAAA record but my client had no IPv6 connection, maybe this is the reason. HTH