码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7 搭建 rsync 服务器

时间:2017-08-08 15:26:37      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:log   模块   bsp   3.1   repo   yum   use   sts   mon   

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 服务器

标签:log   模块   bsp   3.1   repo   yum   use   sts   mon   

原文地址:http://www.cnblogs.com/panhongyin/p/7306621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!