rsync

[root@backup ~]# scp /etc/hostname 172.16.1.31:/tmp
root@172.16.1.31's password:
hostname 100% 7 15.4KB/s 00:00
[root@backup ~]# #本地 /etc 目录 推送到 nfs01 的/tmp 下面
[root@backup ~]#

rsync -av /etc nfs01:/mnt

前面参数是source , 后面是target

推过去

[root@backup ~]# rsync -av /etc nfs01:/mnt
root@nfs01's password:
sending incremental file list
etc/hosts

sent 46,602 bytes received 658 bytes 13,502.86 bytes/sec
total size is 26,670,532 speedup is 564.34

拉过来

[root@backup ~]# rsync -av nfs01:/etc/hostname /tmp/
root@nfs01's password:
receiving incremental file list
hostname

sent 43 bytes received 100 bytes 40.86 bytes/sec
total size is 6 speedup is 0.04
[root@backup ~]# cat /tmp/hostname
nfs01

rsync服务端配置文件

[root@backup ~]# cat /etc/rsyncd.conf

created by oldboy 15:01 2009-6-5

##rsyncd.conf start##
fake super =yes 
uid = rsync
gid = rsync
use chroot = no
max connections = 2000
timeout = 600
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log
ignore errors
read only = false
list = false
hosts allow = 10.0.0.0/24
#hosts deny = 0.0.0.0/32
auth users = rsync_backup
secrets file = /etc/rsync.password
#####################################
[data]
comment = www by old0boy 14:18 2012-1-13
path = /data 

read error: Connection reset by peer

[root@backup ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
sending incremental file list
rsync: read error: Connection reset by peer (104)
rsync error: error in socket IO (code 10) at io.c(785) [sender=3.1.2]

配置文件

auth failed on module data

[root@backup /data]# rsync /etc/hosts rsync_backup@10.0.0.41::data
Password:
@ERROR: auth failed on module data
data模块的密码错误了
1.密码错误
2./etc/rsync.password 内容是否正确
rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2]

看日志 发现是密码文件权限的问题

2019/05/18 14:52:37 [9000] secrets file must not be other-accessible (see strict modes option)
2019/05/18 14:52:37 [9000] auth failed on module data from UNKNOWN (10.0.0.41) for rsync_backup: ignoring secrets file

2019/05/18 15:52:20 [3084] auth failed on module data from nfs01 (172.16.1.31) for rsybackup: no matching rule

Operation not permitted

root@backup01 ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
Password:
sending incremental file list
hosts
rsync: chgrp ".hosts.YudpXN" (in data) failed: Operation not permitted (1)

sent 95 bytes received 128 bytes 14.39 bytes/sec
total size is 349 speedup is 1.57
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1178) [sender=3.1.2]

[root@backup01 ~]# ll -d /data /tmp
drwxr-xr-x 2 rsync rsync 19 May 18 14:56 /data
drwxr-xr-x. 2 root root 6 May 18 14:34 /tmp
[root@backup01 ~]# chmod 1777 /tmp
[root@backup01 ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
Password:
sending incremental file list
hosts
rsync: chgrp ".hosts.XGfttQ" (in data) failed: Operation not permitted (1)

sent 95 bytes received 128 bytes 40.55 bytes/sec
total size is 349 speedup is 1.57
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1178) [sender=3.1.2]

[root@backup01 ~]# ll -d /data
drwxr-xr-x 2 rsync rsync 19 May 18 14:56 /data
[root@backup01 ~]# ll -d /data /tmp
drwxr-xr-x 2 rsync rsync 19 May 18 14:56 /data
drwxr-xr-x. 2 root root 6 May 18 14:34 /tmp
[root@backup01 ~]# chmod 1777 /tmp
[root@backup01 ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
Password:
sending incremental file list
hosts
rsync: chgrp ".hosts.XGfttQ" (in data) failed: Operation not permitted (1)

sent 95 bytes received 128 bytes 40.55 bytes/sec
total size is 349 speedup is 1.57
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1178) [sender=3.1.2]
[root@backup01 ~]#
[root@backup01 ~]#
[root@backup01 ~]#
[root@backup01 ~]# vim /etc/rsyncd.conf
[root@backup01 ~]# systemctl restart rsyncd
[root@backup01 ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
Password:
sending incremental file list
hosts

sent 95 bytes received 49 bytes 12.52 bytes/sec
total size is 349 speedup is 2.42

Permission denied

[root@backup ~]# rsync -av /etc/hosts rsync_backup@10.0.0.41::data
Password:
sending incremental file list
rsync: ERROR: cannot stat destination "." (in data): Permission denied (13)
rsync error: errors selecting input/output files, dirs (code 3) at main.c(635) [Receiver=3.1.2]
[root@backup ~]# ll -d /data/
drw-------. 2 rsync rsync 6 May 18 14:32 /data/

echo '123456'>/etc/rsync.password
chmod 600 /etc/rsync.password
rsync -avz -P /etc/sysconfig rsync_backup@172.16.1.41::data --password-file /etc/rsync.password

企业案例:rsync上机实战考试题:
web01

backup

某公司里有一台Web服务器,里面的数据很重要,但是如果硬盘坏了,数据就会丢失,现在领导要求你把数据在其他机器上做一个周期性定时备份。要求如下:
每天晚上12点整在Web服务器A(web01 )上打包备份网站程序目录并通过rsync命令推送到服务器B(backup)上备份保留
(备份思路可以是先在本地按日期打包,然后再利用rsync推到备份服务器上)。

具体要求如下:
1)Web服务器A和备份服务器B的备份目录必须都为/backup。
2)Web服务器站点目录假定为(/var/www/html)。
3)Web服务器本地仅保留7天内的备份。
4)每天晚上12点把备份/backup 推送到 备份服务器B上
5)备份服务器上每周六的数据都保留,其他备份仅保留180天备份。

6)备份服务器上检查备份结果是否正常,并将每天的备份结果发给管理员信箱。

web服务器 上面的脚本

[root@web01 ~]# cat /server/scripts/bak-web01.sh

#!/bin/bash

ip=`hostname -I |awk '{print $NF}'`
mkdir -p /backup/$ip
#backup configure 
tar zchf /backup/$ip/conf-`date +%F-%w`.tar.gz /etc/  /var/spool/cron/  /var/www/html/
#push rsync 
rsync -avz /backup/   rsync_backup@backup::backup   --password-file=/etc/rsync.password
#del 
#find /backup/ -type f  -name "*.tar.gz" -mtime +7|xargs rm 

[root@web01 ~]# sh /server/scripts/bak-web01.sh
[root@web01 ~]# sh -x /server/scripts/bak-web01.sh
++ hostname -I
++ awk '{print $NF}'

  • ip=172.16.1.7
  • mkdir -p /backup/172.16.1.7
  • cd /
    ++ date +%F-%w
  • tar zchf /backup/172.16.1.7/conf-2019-05-18-6.tar.gz etc/ var/spool/cron/ var/www/html/
  • rsync -az /backup/ rsync_backup@backup::backup --password-file=/etc/rsync.password

[root@web01 ~]# crontab -l

backup configure

00 00 * * * sh /server/scripts/bak-web01.sh >/dev/null 2>&1

[root@web01 ~]# mkdir -p /var/www/html
[root@web01 ~]# tar zchf /backup/172.16.1.7/conf-date +%F-%w.tar.gz /etc/ /var/spool/cron/ /var/www/html/
tar: Removing leading `/' from member names
[root@web01 ~]# tar tf /backup/172.16.1.7/conf-2019-05-18-6.tar.gz

echo 123456 > /etc/rsync.password
chmod 600 /etc/rsync.password

backup.oldboyedu.com

[root@web01 ~]# cat /server/scripts/bak-web01.sh

!/bin/bash

ip=hostname -I |awk '{print $NF}'
mkdir -p /backup/$ip

backup configure

cd / &&
tar zchf /backup/$ip/conf-date +%F-%w.tar.gz etc/ var/spool/cron/ var/www/html/

md5sum

find /backup/ip/ -type f -name "*.tar.gz" |xargs md5sum >/backup/ip/check.md5

push rsync

rsync -az /backup/ rsync_backup@backup::backup --password-file=/etc/rsync.password

del

find /backup/ -type f -name "*.tar.gz" -mtime +7|xargs rm

Linux下面发邮件
申请 163 126邮箱 不用QQ邮箱

Linux下面配置
启动邮件服务postfix #backup服务器

总结:
1.综合架构结构 画出来
2.第1个服务-备份服务rsync(守护进程模式)
3.全网备份项目
4.架构和排错流程

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

推荐阅读更多精彩内容