废了半天劲最后通过查找日志终于配置好了
服务器配置文件:
几个重点:
readonly=no
还有下面share中的read only
配置文件和密码文件权限设置成 600
密码文件内容 /etc/rsyncd.passwd类似
root:111111
出问题看日志,别瞎实验。
uid = nobody gid = nobody # use chroot = yes max connections = 4 pid file = /var/run/rsyncd.pid # exclude = lost+found/ transfer logging = yes timeout = 900 ignore nonreadable = yes # dont compress = *.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2 log file = /var/log/rsync.log readonly = no [share] path = /home/share comment = ftp export area read only = false auth users = root secrets file = /etc/rsyncd.passwd
windows客户端:
>rsync.exe -r --progress --no-iconv /cygdrive/e/xxx root@192.168.1.105::share