首页 > 代码库 > CentOS7 搭建 rsync 服务器
CentOS7 搭建 rsync 服务器
1:安装软件包:
yum install -y rsync
2:修改配置文件: /etc/rsyncd.conf
uid = root gid = root use chroot = yes #下面是不同模块各自的配置和路径,仅供参考 [yum] path = /mirrors/yum/ comment = repository list = true uid = root gid = root hosts allow = * [apt] path = /mirrors/apt/ comment = repository list = true uid = root gid = root hosts allow = *
3:启动服务:
rsync --daemon --no-detach
4:客户端测试命令:
rsync -avh -H --delete --progress rsync://10.3.10.34/apt/ ./apt
CentOS7 搭建 rsync 服务器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。