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
相关文章
如何在Ubuntu上通过Docker部署OpenVPN服务器
本文我们将探讨如何在Ubuntu服务器上通过Docker容器化技术来部署OpenVPN服务器,下面是逐步进行的指南,适用于初学者和中级用户,感兴趣的朋友一起看看吧2023-10-10
服务器负载均衡是什么意思(服务器负载均衡的基本功能和实现原理)
这篇文章主要介绍了服务器负载均衡是什么意思,服务器负载均衡的基本功能和实现原理,需要的朋友可以参考下2017-08-08
禁止IP访问网站的多种方法分享(linux,php,nginx,apache)
禁止IP访问网站的各种方法有许多,不同服务器环境的方法会所有不同,下面我总结我们常用的禁止IP访问网站的实现配置方法,希望对大家会有所帮助2014-07-07


最新评论