欢迎来到代码驿站!

Nginx

当前位置:首页 > 服务器 > Nginx

cwrsync invalid uid nobody 解决方法

时间:2020-10-15 23:19:20|栏目:Nginx|点击:

使用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

上一篇:虚拟主机应该如何解决电信网通间互联互通

栏    目:Nginx

下一篇:如何让Nginx快速支持TLS1.3协议详解

本文标题:cwrsync invalid uid nobody 解决方法

本文地址:http://www.codeinn.net/misctech/12061.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有