尝试通过rsync连接以使用以下命令下载文件时:
rsync -Pav http://some.domainname.com/file.tar.gz
给我以下错误
ssh: Could not resolve hostname http: Connection timed out
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
rsync error: unexplained error (code 255) at io.c(605) [Receiver=3.0.9]
如果我尝试使用ftp命令下载相同的文件,它可以正常工作。如果我尝试在另一个网络上使用来自个人电脑的rsync命令,这也可以正常工作,所以它似乎是环保的。
客户端客户端PC位于代理服务器后面,但所有代理地址详细信息已添加到系统中,我可以浏览,ftp和ssh到测试服务器上,没有任何问题。有什么可能阻止rsync运行吗?
答案 0 :(得分:3)
你正在混合curl / wget和rsync ..
wget http://some.domainname.com/file.tar.gz
或
rsync a_user@some.domainename.com:/path/to/webdir/file.tar.gz /local/dest/dir