Rsync介绍
①rsync是一款开源的、快速的、多功能的、可实现全量及增量的本地或远程数据同步备份的优秀工具。并且可以不进行改变原有数据的属性信息,实现数据的备份迁移特性。 ②rsync软件适用于unix/linux/windows等多种操作系统平台 ③rsync是一个快速和非常方便的文件复制工具。它能本地复制,远程复制,或者远程守护进程方式复制,它提供了大量的参数来控制其行为的各个方面,并且允许非常灵活的方式来实现文件的传输复制 ④以其delta-transfer算法闻名。 ⑤rsync监听端口: 873 ⑥rsync运行模式:c/s
同步方式
①全量备份: ②原有的数据全部传送 ③把原来的文件和新的文件一起统一传送 ④全量复制,效率低
增量备份
在传输数据之前通过一些算法通过你有的数据和我有的数据进行对比,把不一样的数据通过网络传输22增量复制,效率高
rsync命令
常用选项 说明
-r 递归模式,包含目录及子目录中的所有文件
-l 对于符号链接文件仍然复制为符号链接文件
-v 显示同步过程的详细信息
-z 在传输文件时进行压缩
-a 档模式,递归并保留对象属性,等同于-rlptgoD
-p 保留文件的权限标记
-t 保留文件的时间标记
-g 保留文件的属组标记(仅超级用户使用)
-o 保留文件的属主标记(仅超级用户使用)
-H 保留硬链接文件
-A 保留ACL属性信息
-D 保留设备文件及其他特殊文件
--delete 删除目标位置有而原始位置没有的文件
--checksum 根据对象的校验和来决定是否跳过文件
本地复制
[root@rsync bak]
[root@rsync /]
sending incremental file list
bak/
bak/1.txt
bak/2.txt
[root@rsync /]
sending incremental file list
./
1.txt
2.txt
配置rsync源服务器
[root@rsync ~]
[root@rsync ~]
修改/etc/rsyncd.conf配置文件
[root@rsync ~]
uid = nobody
gid = nobody
use chroot = yes
address = 192.168.235.179
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.235.0/24
[wwwroot]
path = /var/www/html
comment = Document Root of www.ljm.com
read only = yes
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z
auth users = backuper
secrets file = /etc/rsyncd_users.db
为备份账户创建数据文件
[root@rsync ~]
[root@rsync ~]
保证所有用户对源目录/var/www/html 都有读的权限
[root@rsync ~]
[root@rsync ~]
[root@rsync ~]
启动rsync服务
[root@rsync ~]
[root@rsync ~]
服务器
[root@rsync ~]
[root@rsync html]
客户端
[root@client ~]
[root@client ~]
客户端:免交互格式配置
[root@client /]
[root@client /]
123123
[root@client /]
[root@client /]
[root@client bak]
1.txt
[root@client bak]
[root@client bak]
[root@rsync html]
[root@client bak]
rsync买时同步
定期同步的不足
执行备份的时间固定,延迟明显实时性差 当同步源长期不变化时,密集的定期任务是不必要的
实时同步的优点
—旦同步源出现变化,立即启动备份 只要同步源无变化,则不执行备份
inotify
简介
可以监控文件系统的变动情况,并做出通知响应 调整inotify内核参数(优化)
/etc/sysctl.conf(内核参数配置文件)
inotifywait:
inotifywatch:
max_queue_events
max_user_instances
max_user_watches
2、inotifywait(持续监控并实时输出监控结果的命令)
格式:inotifywait [参数]
常见参数 说明
-m 持续进行监控
-r 递归监控所有子对象
-q 简化输出信息
-e 指定要监控哪些事件类型
实验
[root@rsync ~]
uid = root
gid = root
read only = no
[root@rsync ~]
[root@rsync ~]
[root@rsync ~]
[root@rsync ~]
客户端:inotify内核参数
[root@client ~]
fs.inotify.max_queued_events = 32768
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
[root@client ~]
client安装inotify-tools
[root@client ~]
[root@client opt]
[root@client inotify-tools-3.14]
[root@client inotify-tools-3.14]
[root@client ~]
client编写触发同步脚本
[root@client opt]
INOTIFY_CMD="inotifywait -mrq -e create,delete,move,modify,attrib /bak/"
RSYNC_CMD="rsync -apzH --delete --password-file=/etc/server.pass /bak/ backuper@192.168.235.179::wwwroot/"
$INOTIFY_CMD | while read DIRECTORY EVENT FILE
do
if [ $(pgrep rsync | wc -l) -le 0 ] ; then
$RSYNC_CMD
fi
done
[root@client opt]
[root@client opt]
[root@client opt]
测试
[root@client opt]
等待下次更新
|