Linux教程

rsync linux服务器与windows客户端直接传输文件

本文主要是介绍rsync linux服务器与windows客户端直接传输文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

废了半天劲最后通过查找日志终于配置好了

服务器配置文件:

几个重点:

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

这篇关于rsync linux服务器与windows客户端直接传输文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!