centos7安装配置rsync

一、服务端(192.168.8.81):

  1. 安装软件:
    yum  -y  install  rsync
  2. 创建需同步的目录:
    mkdir  -p  /home/lee/rsync
  3. 编辑配置文件:vim /etc/rsync.conf
    motd file = /etc/rsyncd.motd
    transfer logging = yes
    log file = /var/log/rsyncd.log
    port = 873
    address = 192.168.8.81
    uid = nobody
    gid = nobody
    use chroot = no
    read only = no
    max connections = 10
    [common]
    comment = rsync lee
    path = /home/lee/rsync/
    ignore errors
    auth users = lee
    secrets file = /etc/rsyncd.secrets
    hosts allow = 192.168.8.0/255.255.255.0
    hosts deny = *
    list = false
  4. 创建用户密码:
    echo  "lee:123456"  >  /etc/rsyncd.secrets
    chmod  600  /etc/rsyncd.secrets
  5. 创建提示信息文件:
    echo  "rsync  lee"  >  /etc/rsyncd.motd
  6. 配置防火墙规则:
    iptables  -I  INPUT  -p  tcp  --dport  873  -j  ACCEPT
  7. 启动服务:
    rsync  --deamon
    echo  "rsync  --deamon"  >>  /etc/rc.local

    二、客户端(192.168.8.81):

  8. 安装软件:
    yum  -y  install  rsync
  9. 创建密码文件(免输入密码):
    echo  "123456"  >  /root/passwd
    chmod  600  /root/passwd
  10. 同步:
    rsync  -avz  --password-file=/root/passwd  lee@192.168.8.81::common  /home/lee/rsync/

    centos7安装配置rsync

 本文转自 Lee_吉 51CTO博客,原文链接:http://blog.51cto.com/12173069/2069243

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值