cwrsync invalid uid nobody 解决方法

发布时间:2022-04-25 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了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

脚本宝典总结

以上是脚本宝典为你收集整理的cwrsync invalid uid nobody 解决方法全部内容,希望文章能够帮你解决cwrsync invalid uid nobody 解决方法所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:invaliduid