美文网首页
Mac Centos 通过 rsync 同步文件

Mac Centos 通过 rsync 同步文件

作者: lenbolan | 来源:发表于2021-07-28 20:20 被阅读0次
    1. Mac 自带 rsync
    2. Centos 安装 rsync
    #安装
    yum -y install rsync  
    
    #启动rsync服务
    systemctl start rsyncd.service
    systemctl enable rsyncd.service
    
    #检查是否已经成功启动
    netstat -lnp|grep 873
    
    1. 配置文件
      vim /etc/rsyncd.conf
    uid = root
    gid = root
    max connections = 4
    timeout = 600
    use chroot = no
    read only = no
    pid file = /var/run/rsyncd.pid
    lock file = /root/env/rsyncd/rsyncd.lock
    hosts allow = xxx.xxx.xxx.xxx
    syslog facility = local7
    transfer logging = yes
    incoming chmod = Du=rwx,Dog=rx,Fu=rwx,Fgo=rx
    
    [www]
        path = /root/www 
        comment = www
    
    1. 重启服务
    systemctl restart rsyncd.service
    
    1. 同步
    #远程同步到本地:
    rsync -av root@xxx.xxx.xxx.xxx::www/testapp/ ./
    
    #本地同步到远程:
    rsync -av ./ root@xxx.xxx.xxx.xxx::www/testapp/
    

    相关文章

      网友评论

          本文标题:Mac Centos 通过 rsync 同步文件

          本文链接:https://www.haomeiwen.com/subject/bmqtvltx.html