cwrsync invalid uid nobody 解决方法
使用rsync/cwrsync工具进行档案同步的时候出现了下面的错误:
C:Program FilescwRsyncbin>rsync.exe -av rsync://192.168.0.211:52326/test /cygdrive/e/www.01314.cn/rsync @ERROR: invalid uid nobody rsync error: error starting client-server protocol (code 5) at main.c(1506) [Receiver=3.0.7]
解决办法:在rsyncd.conf文件中添加下面两行即可解决问题
uid = 0
gid = 0
完整rsyncd.conf文件
uid = 0 gid = 0 use chroot = false strict modes = false hosts allow = * log file = rsyncd.log pid file = rsyncd.pid port = 52326 max connections = 4 # Module definitions # Remember cygwin naming conventions : c:work becomes /cygwin/c/work # [test] path = /cygdrive/e/rsync/res read only = yes transfer logging = yes lock file = rsyncd.lock secrets file = /etc/rsyncd.pass
cwRsync客户端密码文件的权限配置和invalid uid nobody疑难
cwRsync客户端密码文件的权限配置处置办法。
windows 在 cygwin 下运用 chmod
创立文件后,把权限改为600
chmod 600 /rsyncd.passwd
invalid uid nobody处置办法。
修正配置文件:rsyncd.conf
在文件开头添加
uid = 0
gid = 0
相关文章
WampServer设置apache伪静态出现404 not found及You don''t have permiss
这篇文章主要介绍了WampServer设置apache伪静态出现404 not found及You don't have permission to access / on this server解决方法,较为详细的分析了几种常见情况,非常具有实用价值,需要的朋友可以参考下2015-10-10便宜vps多是哪些技术架构方式(VPS分割架构是怎么超售的)
对于vps服务器租用,一些人们可能比较注重vps服务器价格,那么,了解和清楚哪一类vps服务器比较便宜是有必要的,这样我们就有针对的去选用购买自己需要的便宜vps服务器2015-09-09DELL R720服务器安装Windows Server 2008 R2系统的图文详解
这篇文章主要介绍了DELL R720服务器安装Windows Server 2008 R2系统的图文详解,需要的朋友可以参考下2021-03-03
最新评论