@ERROR: Unknown module ‘common’

发布于 2022-09-04 14:49:28 字数 1429 浏览 11 评论 0

@ERROR: Unknown module ‘common’ rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.6]
原因:
服务器不存在指定模块。
解决方法:
提供正确的模块名或在服务器端修改成你要的模块以解决问题。

我不太理解正确的模块名是什么意思。
本人新手 用rsync试着跑一遍
我根据linux运维之道书 上教程

# yum -y install rsync
# mkdir /common; cp /etc/init.d/* /common/
# vim /etc/rsync.conf
motd file=/etc/rsyncd.motd
transfer logging = yes
log file = /var/log/rsyncd.log
pid file=/var/run/rsyncd.pid
lock file=rsync.lock
port = 873
address=192.168.188.80
uid=nobody
gid=nobody
use chroot = no
read only = yes
max connections=10
[common]
comment=Web content
path=/common
ignore errors
auth users=tom,jerry
secrets file= /etc/rsyncd.secrets
hosts allow=192.168.0.0/255.255.255.0
hosts deny=*
list=false
echo "tcom:pass" > /etc/rsyncd.secrets
chmod 600 /etc/rsyncd.secrets
echo "welcome to access" >/etc/rsyncd.motd
rsync --daemon
echo "/usr/bin/rsync --daemon" >> /etc/rc.local
iptables -I INPUT -p tcp --dports 873 -j ACCEPT
service iptables save

客户端同步数据

yum -y install rsync 
rsync -vzrtopg --progress tom@192.168.0.0.254::common /test
@ERROR: Unknown module ‘common ’ rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.6]

原因:
服务器不存在指定模块。
解决方法:
提供正确的模块名或在服务器端修改成你要的模块以解决问题。

卡到这一关,不知道怎么做啊

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

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

发布评论

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

评论(1

无名指的心愿 2022-09-11 14:49:28
uid=root

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