欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

【Linux】远程数据同步

程序员文章站 2023-01-22 13:10:23
rsync命令详解 rsync命令是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件。rsync使用所谓的“rsync算法”来使本地和远程两个主机之间的文件达到同步,这个算法只传送两个文件的不同部分,而不是每次都整份传送,因此速度相当快。 rsync是一个功能非常强大的工具,其命令 ......

rsync命令详解

rsync命令是一个远程数据同步工具,可通过lan/wan快速同步多台主机间的文件。rsync使用所谓的“rsync算法”来使本地和远程两个主机之间的文件达到同步,这个算法只传送两个文件的不同部分,而不是每次都整份传送,因此速度相当快。 rsync是一个功能非常强大的工具,其命令也有很多功能特色选项,我们下面就对它的选项一一进行分析说明。

rsync特性

  • 能更新整个目录和树和文件系统;

  • 有选择性的保持符号链链、硬链接、文件属于、权限、设备以及时间等;

  • 对于安装来说,无任何特殊权限要求;

  • 对于多个文件来说,内部流水线减少文件等待的延时;

  • 能用rsh、ssh 或直接端口做为传输入端口;

  • 支持匿名rsync 同步文件,是理想的镜像工具;

一、安装rsync

  • centos :
yum -y install rsync

  • ubuntu
apt-get -y install rsync

验证是否安装成功

命令:rsync --version #查看rsync版本

[root@localhost ~]# rsync --version
rsync  version 3.1.2  protocol version 31
copyright (c) 1996-2015 by andrew tridgell, wayne davison, and others.
web site: http://rsync.samba.org/
capabilities:
    64-bit files, 64-bit inums, 64-bit timestamps, 64-bit long ints,
    socketpairs, hardlinks, symlinks, ipv6, batchfiles, inplace,
    append, acls, xattrs, iconv, symtimes, prealloc

rsync comes with absolutely no warranty.  this is free software, and you
are welcome to redistribute it under certain conditions.  see the gnu
general public licence for details.

二、rsync常用选项


  • 1 ==-v, --verbose 详细模式输出==
  • 2 ==-q, --quiet 静默模式,传输没有任何信息,即使出错了,也没有信息。==
  • 3 -c, --checksum 打开校验开关,强制对文件传输进行校验
  • 4 ==-a, --archive 归档模式,表示以递归方式传输文件,并保持所有文件属性,等于-rlptgod==
  • 5 ==-r, --recursive 对子目录以递归模式处理==
  • 6 -r, --relative 使用相对路径信息
  • 7 -b, --backup 创建备份,也就是对于目的已经存在有同样的文件名时,将老的文件重新命名为~filename。可以使用--suffix选项来指定不同的备份文件前缀。
  • 8 --backup-dir 将备份文件(如~filename)存放在在目录下。
  • 9 -suffix=suffix 定义备份文件前缀
  • 10 -u, --update 仅仅进行更新,也就是跳过所有已经存在于dst,并且文件时间晚于要备份的文件。(不覆盖更新的文件)
  • 11 ==-l, --links 保留软链结==
  • 12 ==-l, --copy-links 想对待常规文件一样处理软链结==
  • 13 --copy-unsafe-links 仅仅拷贝指向src路径目录树以外的链结
  • 14 --safe-links 忽略指向src路径目录树以外的链结
  • 15 -h, --hard-links 保留硬链结
  • 16 ==-p, --perms 保持文件权限==
  • 17 ==-o, --owner 保持文件属主信息==
  • 18 ==-g, --group 保持文件属组信息==
  • 19 ==-d, --devices 保持设备文件信息==
  • 20 ==-t, --times 保持文件时间信息==
  • 21 -s, --sparse 对稀疏文件进行特殊处理以节省dst的空间
  • 22 -n, --dry-run现实哪些文件将被传输
  • 23 -w, --whole-file 拷贝文件,不进行增量检测
  • 24 -x, --one-file-system 不要跨越文件系统边界
  • 25 -b, --block-size=size 检验算法使用的块尺寸,默认是700字节
  • 26 -e, --rsh=command 指定使用rsh、ssh方式进行数据同步
  • 27 --rsync-path=path 指定远程服务器上的rsync命令所在路径信息
  • 28 -c, --cvs-exclude 使用和cvs一样的方法自动忽略文件,用来排除那些不希望传输的文件
  • 29 --existing 仅仅更新那些已经存在于dst的文件,而不备份那些新创建的文件
  • ==30 --delete 删除那些dst中src没有的文件(如果源端没有此文件,那么目的端也别想拥有,删除之
    )==
  • 31 ==--delete-excluded 专门指定一些要在目的端删除的文件。==
  • 32 --delete-after 传输结束以后再删除
  • 33 --ignore-errors 及时出现io错误也进行删除
  • 34 --max-delete=num 最多删除num个文件
  • 35 --partial 保留那些因故没有完全传输的文件,以是加快随后的再次传输
  • 36 --force 强制删除目录,即使不为空
  • 37 --numeric-ids 不将数字的用户和组id匹配为用户名和组名
  • 38 --timeout=time ip超时时间,单位为秒
  • 39 -i, --ignore-times 不跳过那些有同样的时间和长度的文件
  • 40 --size-only 当决定是否要备份文件时,仅仅察看文件大小而不考虑文件时间
  • 41 --modify-window=num 决定文件是否时间相同时使用的时间戳窗口,默认为0
  • 42 -t --temp-dir=dir 在dir中创建临时文件
  • 43 --compare-dest=dir 同样比较dir中的文件来决定是否需要备份
  • 44 ==-p 等同于 --partial,保留那些因故没有完全传输的文件,以加快随后的再次传输==
  • 45 --progress 显示备份过程
  • 46 ==-z, --compress 对备份的文件在传输时进行压缩处理==
  • 47 --exclude=pattern 指定排除不需要传输的文件模式
  • 48 --include=pattern 指定不排除而需要传输的文件模式
  • 49 --exclude-from=file 排除file中指定模式的文件
  • 50 --include-from=file 不排除file指定模式匹配的文件
  • 51 --version 打印版本信息
  • 52 --address 绑定到特定的地址
  • 53 --config=file 指定其他的配置文件,不使用默认的rsyncd.conf文件
  • 54 ==--port=port 指定其他的rsync服务端口==
  • 55 --blocking-io 对远程shell使用阻塞io
  • 56 -stats 给出某些文件的传输状态
  • 57 --progress 在传输时现实传输过程
  • 58 --log-format=format 指定日志文件格式
  • 59 ==--password-file=file 从file中得到密码==
  • 60 --bwlimit=kbps 限制i/o带宽,kbytes per second
  • 61 -h, --help 显示帮助信息

三、rsync使用方法举例

例1:在本地服务器上同步两个目录

在本地机器上同步两个目录,使用==rsync -zvr==命令

[root@localhost ~]# rsync -zvr /opt/seafile-data/ /mnt/
sending incremental file list
db/
db/aria_log.00000001
db/aria_log_control
db/ib_logfile0

上述命令中:

  • -z 打开压缩功能

  • -v verbose更多打印信息

  • -r recursive

执行上述命令后,你会发现rsync copy会影响到文件的timestamp信息,这时因为默认rsync并不保护timestamp信息

注意:

/opt/seafile-data/ 这种写法将同步seafile-data文件夹下所有文件,不包括seafile-data文件夹

/opt/seafile-data 这种写法将同步seafile-data整个文件夹,包括seafile-data文件夹

例2:在sync时,保留时间戳 -a(achive mode:recursive mode, 保留符号链接,保留权限信息,时间戳,以及owner,group信息)
[root@localhost ~]# rsync -avz /opt/seafile-data /mnt/
sending incremental file list
seafile-data/
seafile-data/db/
seafile-data/db/aria_log.00000001
seafile-data/db/aria_log_control
seafile-data/db/ib_logfile0

注意这时你会发现source,dest文件的时间戳、属主属组等信息是不变的

[root@localhost ~]# ls -l /opt/seafile-data/logs/seafile/seahub.log /mnt/seafile-data/logs/seafile/seahub.log
-rw-r--r-- 1 root root 15858 3月  21 18:23 /mnt/seafile-data/logs/seafile/seahub.log
-rw-r--r-- 1 root root 15858 3月  21 18:23 /opt/seafile-data/logs/seafile/seahub.log

例三:只同步一个文件

只要在rsync命令中指定文件名称即可

[root@localhost ~]# rsync -v /opt/seafile-data/seafile/conf/install.sh /mnt/
install.sh

sent 19,858 bytes  received 35 bytes  39,786.00 bytes/sec
total size is 19,776  speedup is 0.99

ll /mnt/install.sh 
-rw-r--r-- 1 root root 19776 3月  25 14:05 /mnt/install.sh

例四:从本地同步到远端服务器
[root@localhost ~]# rsync -avz /opt/seafile-data root@10.20.29.38:/mnt/
root@10.20.29.38's password:  输入远端服务器密码
sending incremental file list
seafile-data/
seafile-data/db/
seafile-data/db/aria_log.00000001
seafile-data/db/aria_log_control

......
......
sent 1,809,853,100 bytes  received 10,547 bytes  28,501,789.72 bytes/sec
total size is 2,005,006,840  speedup is 1.11

当执行和remote server同步的动作时,你需要指定username,ip。也要指定远程服务器上的目的地目录,格式是: username@machineip:path

即格式为:

==rsync -avz 本地需要同步文件的绝对路径 远端用户名@远端ip:远端文件保存的绝对路径==

这个过程中,rsync会要求输入密码。但是如果你有一个脚本自动运行这个备份动作,你可能希望不要手动输入密码,即

例5:从远端服务器同步到本地
[root@localhost ~]# rsync -avz root@10.20.29.38:/mnt/seafile-data /mnt/
root@10.20.29.38's password:  输入密码
receiving incremental file list
seafile-data/
seafile-data/db/
seafile-data/db/aria_log.00000001
......
......
sent 4,698 bytes  received 1,785,742,775 bytes  31,056,477.79 bytes/sec
total size is 2,005,006,840  speedup is 1.12