使用 rsync 出错:rsync: chgrp "test" failed: Operation not permitted

发布于 2022-09-02 11:55:49 字数 1315 浏览 14 评论 0

两台服务器,A服务器为更新源服务器;B服务器为目的服务器;
现在把A服务器的网站文件备份到B服务器上,相关信息如下:
B服务器(rsync服务端)rsyncd.conf配置:

uid = nobody
gid = nogroup
use chroot = no
max connections = 100
timeout = 600
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
[test]
path = /data/www/test
ignore errors
read only = no
list = no
hosts allow = *
auth users = test
secrets file = /etc/rsyncd/test_server.pwd

A服务器已经安装rsync,在终端输入:

rsync -vzrtopg --delete --progress /data/www/test test@192.168.0.1::test --password-file=/etc/rsyncd/test.pwd

监控B服务器上的rsyncd.log:

2016/03/28 11:40:23 [30017] params.c:Parameter() - Ignoring badly formed line in config file: ignore errors
2016/03/28 11:40:23 [30017] connect from mail18.f.tsender.com (192.168.0.1)
2016/03/28 11:40:23 [30017] rsync to test/ from test@mail18.f.tsender.com (192.168.0.1)
2016/03/28 11:40:23 [30017] receiving file list
2016/03/28 11:40:23 [30017] rsync: chgrp "test" (in test) failed: Operation not permitted (1)
2016/03/28 11:40:23 [30017] rsync: chgrp "test/.file-dump.txt.NZqVgf" (in test) failed: Operation not permitted (1)
2016/03/28 11:40:23 [30017] sent 247 bytes  received 156 bytes  total size 8

服务端文件已经生成,如何解决上面的问题,如果您能给出一些建议,对我来说是莫大的帮助。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮云壑 2022-09-09 11:55:49

不是写的很清楚:rsync: chgrp "test" (in test) failed: Operation not permitted (1)了吗?

/data/www/test  这个目录权限是不是test用户所有呢?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文