ZZW原创_rsync同步时由于注释问题引起的@ERROR: chdir failed

Posted 如今在丽江

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZZW原创_rsync同步时由于注释问题引起的@ERROR: chdir failed相关的知识,希望对你有一定的参考价值。

 

1、需求:A机器同步文件到B机器

 

2、问题: A机器执行如下命令:

[[email protected] rsync]# rsync -vzrtopg  --password-file=/usr/local/rsync/rsync.passwd /opt/aspire/product/pcc_cs21/LOCAL_PccFTP/PCC_666_local/components_yml/localAbsoluteTempPath/   [email protected]::components_localAbsoluteTempPath
@ERROR: chdir failed
rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]

3、B机器rsyncd.conf 文件配置

[[email protected] rsync]# vi rsyncd.conf
uid = root
gid = root
use chroot = no
max connections = 4
strict modes = yes
hosts allow = 10.12.3.25 #可以空格,允许多个
port = 873
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log

[components_localAbsoluteTempPath]
path = /opt/aspire/product/pcc_sh21/LOCAL_PccFTP/PCC_666_local/components_yml/localAbsoluteTempPath #当前机器要同步到此的目录
#path = /usr/local/rsync
ignore errors = yes
read only = false
list = false
auth users = backup
uid = pcc_sh21
gid = pcc_sh21
secrets file = /usr/local/rsync/rsyncd.passwd

4、问题解决

将rsyncd.conf 文件中的 #当前机器要同步到此的目录 这个注释删除掉,问题解决

以上是关于ZZW原创_rsync同步时由于注释问题引起的@ERROR: chdir failed的主要内容,如果未能解决你的问题,请参考以下文章

zzw_rsync命令中的/的作用

原创由于python的导入方式引起的深坑

rsync传输引起的网络延迟

rsync同步,日志,screen

谈谈文件增量同步算法:RSYNC和CDC

配置rsync+inotify进行资源或代码同步