我对为什么rsync要求--rsync-path标志(即使远程rsync在路径中)也感到困惑。
考虑:
$ rsync -avze 'ssh -p 22' --delete public/ pmatos@domain.com:~/public_html
bash: /usr/local/bin/rsync: No such file or directory
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: remote command not found (code 127) at io.c(601) [sender=3.0.7]
然后我尝试添加--rsync-path
$ rsync -avze 'ssh -p 22' --rsync-path=/usr/bin/rsync --delete public/ pmatos@domain.com:~/public_html
sending incremental file list
...
因此,第一个rsync并不成功,因为它正在/ usr / local / bin中搜索rsync,但是一旦我使用--rsync-path通过了明显的rsync路径,它便开始工作。
为什么是这样?(此命令行是octopress中rake deploy发布的命令行)
目标端是否有任何强制命令?.bashrc或.profile中是否有可能设置本地环境变量的内容?
—
SmallClanger 2012年
$ cat ~/.bashrc | grep PATH
什么也不返回。
如果您只是沉迷于自己并运行
—
SmallClanger 2012年
which rsync
,您会得到什么?
$ ssh pmatos@domain.com which rsync
返回/usr/bin/rsync
奇怪的。现在,抓着稻草:也许您的本地rsync已
—
SmallClanger 2012年
alias
与rsync --rsync-path
(或其他一些本地包装器)同步?