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

rsync同步文件

时间:2020-01-14 19:03:06      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:nta   UNC   --   命令   roo   conf   nec   机器   read   

一.服务端(需要被同步文件的主机) 1. 安装rsync yum install -y rsync 2. 配置,新增配置文件/etc/rsyncd.conf

[global]
uid = root
gid = root
use chroot = no
max connections = 10
list = yes
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
hosts allow = 192.168.217.130 //白名单,允许同步的机器IP地址

[data] //数据目录别名,同步时需要用到
path = /usr/local/src //别名对应的同步目录
ignore errors
read only = yes
auth users = vicxiang //同步时用到的用户名
secrets file = /etc/sery.pass //同步时用到的账号密码配置文件

    3. 配置,新增配置文件/etc/sery.pass

vicxiang:123456

         修改文件权限
         chmod 600 /etc/sery.pass

    4. 启动rsync服务
       rsync --daemon --config=/etc/rsyncd.conf

    5. 防火墙设置,端口需要开放tcp 873

二.客户端(文件同步到的目的机器)
    1. 配置密码文件/etc/sery_client.pass

123456

            修改文件权限
            chmod 600 /etc/sery_client.pass
    2. 同步命令
            rsync -avr -P  vicxiang@192.168.217.128::data /usr/local/src/ --password-file=/etc/sery_client.pass
            其中vicxiang是同步时使用的用户名;
            192.168.217.128是服务端IP;
            data是服务端配置的数据目录别名;
             /usr/local/src/是同步到本机的目录;
             /etc/sery_client.pass是配置密码文件

三.配合crontab定时同步 
        编写脚本rsync.sh

log_file=rsync.log

function sync(){
ip=${1}
path=${2}
t=date +%Y%m%d-%H%M%S
echo "${t} start to sync data from ${ip}..." >> ${log_file}
rsync -avr -P vicxiang@${ip}::data ${path} --password-file=/etc/sery_client.pass
echo "done" >> ${log_file}
}

sync ip path

rsync同步文件

标签:nta   UNC   --   命令   roo   conf   nec   机器   read   

原文地址:https://blog.51cto.com/14123407/2466728

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