Linux中rsync备份数据使用实例

rsync工具用于将文件和目录从一个位置同步到另一个位置。同步的位置可以在本地服务器或远程服务器上。

Centos中使用下面命令安装rsync:

[root@localhost ~]# yum -y install rsync

实例一:本机中的两个目录进行同步

要同步本地计算机中的两个目录,使用rsync -zvr命令

[root@localhost ~]# rsync -zvr /var/log/ /root/temp/

sending incremental file list

btmp

dnf.librepo.log

...

sssd/sssd_implicit_files.log

sssd/sssd_nss.log

tuned/tuned.log

sent 516,136 bytes  received 605 bytes  1,033,482.00 bytes/sec

total size is 5,451,242  speedup is 10.55

参数解释:

-z 启用压缩

-v 输出详细信息

-r 表示递归

查看一下/root/temp目录,发现rsync在同步期间未保留时间戳。

实例二:使用rsync -a在同步期间保留时间戳

rsync命令的-a选项表示存档模式。-a选项递归同步、保留符号链接、保留权限、保留时间戳、保留所有者和组。

现在,执行以下命令,然后查看文件的时间:

[root@localhost ~]# rsync -azv /var/log/ /root/temp/

sending incremental file list

./

btmp

dnf.librepo.log

dnf.log

dnf.rpm.log

...

sssd/sssd_nss.log

tuned/

tuned/tuned.log

sent 516,231 bytes  received 629 bytes  1,033,720.00 bytes/sec

total size is 5,451,789  speedup is 10.55

如下所示,rsync在同步期间保留了时间戳。

实例三:将文件从本地同步到远程目录

rsync允许在本地和远程系统之间同步文件/目录,前提是本地和远程系统都要安装rsync才行,否则会提示如下信息:

[root@localhost ~]# rsync -avz /root/temp/ root@192.168.43.137:/root/temp

root@192.168.43.137's password:

sending incremental file list

created directory /root/temp

./

btmp

dnf.librepo.log

dnf.log

dnf.rpm.log

...

sssd/sssd_nss.log

tuned/

tuned/tuned.log

sent 516,231 bytes  received 662 bytes  206,757.20 bytes/sec

total size is 5,451,789  speedup is 10.55

下面是在远程系统里面查看已同步的目录:

上面可以看到同步时需要输入密码,有时候不希望将文件从本地服务器备份到远程服务器时输入密码,可以在两台主机间设置免密要登录。

实例四:将文件从远程目录同步到本地

要将文件从远程系统同步到本地时,如下所示,在源中指定远程路径,在目标中指定本地路径即可:

[root@localhost ~]# rsync -avz root@192.168.43.137:/root/temp /root/temp

root@192.168.43.137's password:

receiving incremental file list

temp/

temp/btmp

temp/dnf.librepo.log

temp/dnf.log

...

temp/tuned/

temp/tuned/tuned.log

sent 634 bytes  received 516,247 bytes  206,752.40 bytes/sec

total size is 5,451,789  speedup is 10.55

实例五:不要覆盖目标位置上已修改的文件

如果在目标位置修改了文件,我们可能不想用源位置的旧文件覆盖该文件。使用-u选项就可以做到这一点。在下面的示例中,在本地将test.txt文件修改了内容。它不会被远程系统的test.txt文件所覆盖:

# 查看一下远程系统temp目录下的test.txt文件大小

[root@localhost ~]# ssh root@192.168.43.137 ls -l /root/temp

root@192.168.43.137's password:

total 4

-rw-r--r--. 1 root root 7 Apr  7  2021 test.txt

# 查看一下本机的temp目录下的test.txt文件大小,本机的test.txt文件已修改,所以比远程系统里面的test.txt文件大

[root@localhost ~]# ll /root/temp/

total 4

-rw-r--r--. 1 root root 77 Apr  7 21:10 test.txt

# 执行rsync -avzu同步一下

[root@localhost ~]# rsync -avzu root@192.168.43.137:/root/temp /root/

root@192.168.43.137's password:

receiving incremental file list

sent 25 bytes  received 76 bytes  40.40 bytes/sec

total size is 7  speedup is 0.07

下面查看一下本机的/root/temp目录里面的test.txt是否被覆盖:

发现并没有被覆盖。

实例六:在传输过程中查看rsync进度

使用--progress选项显示rsync执行的详细进度,如下所示:

[root@localhost ~]# rsync -avz --progress /root/temp/ root@192.168.43.137:/root/temp

实例七:在目标目录中删除源目录不存在的文件

如果文件不在源中而是在目标中存在,则可能希望在rsync同步期间删除目标上的文件。在这种情况下,请使用--delete选项:

# 查看一下源目录里面的文件

[root@localhost ~]# ll /root/temp/

total 0

-rw-r--r--. 1 root root 0 Apr  7 21:46 name.csv

# 查看一下目标目录里面的文件

[root@localhost ~]# ssh root@192.168.43.137 ls -l /root/temp

root@192.168.43.137's password:

total 944

drwxr-xr-x. 2 root root      6 Apr  7  2021 anaconda

drwx------. 2 root root      6 Apr  7  2021 audit

-rw-------. 1 root root      0 Apr  7  2021 btmp

-rw-------. 1 root root      0 Apr  7  2021 btmp-20210406

drwxr-xr-x. 2 root root      6 Apr  7  2021 chrony

-rw-------. 1 root root  8432 Apr  7  2021 cron

-rw-------. 1 root root  12200 Apr  7  2021 cron-20210221

-rw-------. 1 root root  48130 Apr  7  2021 cron-20210228

-rw-------. 1 root root  3910 Apr  7  2021 cron-20210308

-rw-------. 1 root root  22455 Apr  7  2021 cron-20210406

-rw-------. 1 root root 383369 Apr  7  2021 dnf.librepo.log

-rw-------. 1 root root 476949 Apr  7  2021 dnf.librepo.log-20210221

# rsync使用--delete选项删除目标目录中不包含源目录的文件

[root@localhost ~]# rsync -avz --delete /root/temp root@192.168.43.137:/root

root@192.168.43.137's password:

sending incremental file list

deleting temp/chrony/

deleting temp/audit/

deleting temp/anaconda/

deleting temp/dnf.librepo.log-20210221

deleting temp/dnf.librepo.log

deleting temp/cron-20210406

deleting temp/cron-20210308

deleting temp/cron-20210228

deleting temp/cron-20210221

deleting temp/cron

deleting temp/btmp-20210406

deleting temp/btmp

temp/

temp/name.csv

sent 123 bytes  received 281 bytes  161.60 bytes/sec

total size is 0  speedup is 0.00

在查看一下目标目录是否删除:

实例八:文件传输过程中的include和exclude模式

rsync允许在进行同步时提供要包括和排除文件或目录的模式。

[root@localhost ~]# rsync -avz --include 'P*' --exclude '*' root@192.168.43.137:/var/lib/rpm/ /root/temp/

在上面的示例中,它仅包括以'P'开头的文件或目录,并排除所有其他文件。

实例九:不传输大文件

可以使用rsync --max-size选项告诉rsync不要传输大于指定大小的文件。

[root@localhost ~]# rsync -avz --max-size='1M' root@192.168.43.137:/var/lib/rpm/ /root/temp/

--max-size=1M使rsync仅传输小于或等于1M的文件。单位可以是K,M,G等。

还可以使用--min-size=参数,指定传输最小文件的大小。

总结

rsync工具用于将文件和目录从一个位置同步到另一个位置。同步的位置可以在本地服务器或远程服务器上。

本文原创地址:https://www.linuxprobe.com/rsync-backup-sample.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容