cwrsync invalid uid nobody 解决方法

2025-05-27 0 21

使用rsync/cwrsync工具进行档案同步的时候出现了下面的错误:

?

1

2

3
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文件

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19
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

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 行业资讯 cwrsync invalid uid nobody 解决方法 https://www.kuaiidc.com/68718.html

相关文章

发表评论
暂无评论