其他分享
首页 > 其他分享> > rsync远程同步

rsync远程同步

作者:互联网

文章目录


一、关于rsync

一款快速增量备份工具
Remote Sync,远程同步
支持本地复制,或者与其他SSH,rsync主机同步

二、配置rsync源

1、基本思路
建立rsync.conf配置文件,独立的账号文件
启用rsync的–daemon模式

2、应用示例
用户backuper,允许同步
操作目录为/var/www/html

3、配置文件rsyncd.conf
需手动建立,语法类似于Samba配置
认证配置auth users、secrets file,不加则为匿名

4、rsync账号文件
采用“用户名:密码”的记录格式,每行一个用户记录
独立的账号数据,不依赖于账号系统

5、启用rsync服务
通过-dawmon独立提供服务

三、rsync命令用法

基本格式:rsync [选项] 原始位置 目标位置

常用选项

选项功能
-r递归模式,包含目录及子目录中所有文件
-l对于符号链接文件仍然复制为符号链接文件
-v显示同步过程的详细信息
-z在传输文件时进行压缩
-a归档模式,保留文件的权限、属性等信息,等同于组合选项“-riptgoD”
-p保留文件的权限标记
-t保留文件的时间标记
-g保留文件的属组标记(仅超级用户使用)
-o保留文件的属主标记(仅超级用户使用)
-H保留硬链接文件
-A保留ACL属性信息
-D保留设备文件及其他特殊文件
-delete删除目标位置有而原始位置没有的文件
-checksum根据校验和(而不是文件大小、修改时间)来决定是否跳过文件

四、rsync实时同步

1、定期同步的不足
①执行备份的时间固定,延迟明显、实时性差
②当同步源长期不变化时,密集的定期任务是不必要的

2、实时同步的优点
①一旦同步源出现变化,立即启动备份
②只要同步源无变化,则不执行备份

五、关于inotify

1、Linux内核的 inotify 机制
①从版本2.6.13开始提供
②可以监控文件系统的变动情况,并做出通知响应
③辅助软件:inotify-tools

2、rsync + inotify 实时同步
notifywait:用于持续监控,实时输出结果
inotifywatch:用于短期监控,任务完成后再出结果

-m : 持续进行监控
-r : 递归监控所有子对象
-q : 简化输出信息
-e : 指定要监控哪些事件类型

六、rsync实验步骤
1、环境布置
Master:192.168.66.33 rsync、httpd
Slave:192.168.66.44 rsync、httpd、inotify

2、Master配置(192.168.66.33)
(1)关闭防火墙

systemctl stop firewalld
setenforce 0

(2)安装httpd、rsync软件包

yum install -y httpd rsync

(3)添加rsync配置文件

vim /etc/rsyncd.conf #添加以下配置项
uid = root #也可以为nobody
gid = root #也可以为nobody
use chroot = yes #禁锢在源目录
address = 192.168.66.33 #监听地址,监听本机地址
port 873 #监听端口 tcp/udp 873,可通过cat /etc/services | grep rsync查看
log file = /var/log/rsyncd.log #日志文件位置
pid file = /var/run/rsyncd.pid #存放进程 ID 的文件位置
hosts allow = 192.168.66.0/24 #允许同步的客户机网段
[whb] #共享模块名称
path = /var/www/html #源目录的实际路径(同步的目录)
comment = Document Root of www.whb.com #这个对我们配置rsync影响不大
read only = yes #是否为只读
dont compress = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型
auth users = whb
secrets file =/etc/rsyncd_users.db #存放账户信息的数据文件

在这里插入图片描述
(4)备份账户数据文件
#如采用匿名的方式,只要将其中的“auth users”和“secrets file”配置项去掉即可

vim /etc/rsyncd_users.db
backuper:abc123 #无须建立同名系统用户
chmod 600 /etc/rsyncd_users.db #添加权限

在这里插入图片描述

(5)安装httpd服务

yum -y install httpd
systemctl start httpd
systemctl enable httpd

(6)创建共享目录和文件

cd /var/www/html
touch 1.html 2.html
chmod +r /var/www/html/ #赋予所有可读的权限
ls -ld /var/www/html/

在这里插入图片描述

(7)重启服务

rsync --daemon #启动 rsync 服务,以独立监听服务的方式(守护进程)运行
netstat -anpt | grep rsync #查看端口号

在这里插入图片描述

#关闭rsync方法

kill $(cat /var/run/rsyncd.pid)
rm -rf /var/run/rsyncd.pid

在这里插入图片描述

3、发起端的配置(slave)
(1)关闭防火墙

systemctl stop firewalld
setenforce 0

(2)安装rsync和httpd

yum install -y httpd rsync

(3)实现共享
#将指定的资源下载到本地/opt 目录下进行备份

格式一
rsync -avz whb@192.168.66.33::wwwroot /opt/ #密码abc123
格式二
rsync -avz rsync://whb@192.168.66.33/whb /opt/

在这里插入图片描述
在这里插入图片描述

(4)实现免交互

echo “abc123” > /etc/server.pass
chmod 600 /etc/server.pass
crontab -e 30 22 * * * /usr/bin/rsync -avz --delete --password-file=/etc/server.pass backuper@192.168.66.33::wwwroot /opt/
systemctl restart crond
systemctl enable crond

在这里插入图片描述
4、发起自动监控inoyify
(1)修改rsync源服务器(192.168.66.44)配置文件

vim /etc/rsyncd.conf
read only = no #关闭只读,上行同步需要可以写

在这里插入图片描述

(2)重启服务

kill $(cat /var/run/rsyncd.pid)
rm -rf /var/run/rsyncd.pid
rsync --daemon

在这里插入图片描述

(3)调整inotify内核参数
在Linux内核中,默认的inotify机制提供了三个调控参数:max_queue_events(监控事件队列,默认值为16384)、max_user_instances(最多监控实例数,默认值为128)、max_user_watches(每个实例最多监控文件数,默认值为8192)。当要监控的目录、文件数量较多或者变化较频繁时,建议加大这三个参数的值

cat /proc/sys/fs/inotify/max_queued_events #监控事件队列
cat /proc/sys/fs/inotify/max_user_instances #最多监控实例数
cat /proc/sys/fs/inotify/max_user_watches #每个实例最多监控文件数

vim /etc/sysctl.conf #加大每个参数
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

sysctl -p

在这里插入图片描述

(4)按照inotify软件包
用 inotify 机制还需要安装 inotify-tools,以便提供 inotifywait、inotifywatch 辅助工具程序
notifywait:可监控modify(修改)、create(创建)、move(移动)、delete(删除)、attrib(属性更改)等各种事件,一有变动立即输出结果

inotifywatch:可用来收集文件系统变动情况,并在运行结束后输出汇总的变化情况

#依赖环境
mount /dev/cdrom /mnt #挂载磁盘
yum install gcc gcc-c++ make -y
#将压缩包inotify-tools-3.14.tar.gz上传至/opt目录下,然后进行解压
tar zxvf inotify-tools-3.14.tar.gz -C /opt/

cd /opt/inotify-tools-3.14
./configure
make && make install

#执行“inotifywait”命令,然后在另一个终端向/var/www/html 目录下添加文件、移动文件,跟踪屏幕输出结果。
#执行下面命令后会进入监听模式,无法操作,所以需要另开一个终端页面进行作
inotifywait -mrq -e modify,create,move,delete /opt
#选项“-e”:用来指定要监控哪些事件
#选项“-m”:表示持续监控
#选项“-r”:表示递归整个目录
#选项“-q”:简化输出信息

(5)创建脚本

#!/bin/bash
INOTIFY_CMD=“inotifywait -mrq -e modify,create,attrib,move,delete /var/www/html/”
RSYNC_CMD=“rsync -apzH --delete --password-file=/etc/server.pass /var/www/html/ backuper@192.168.66.33::wwwroot/”
$INOTIFY_CMD | while read DIRECTORY EVENT FILE
do
if [ $(pgrep rsync | wc -l) -le 0 ] ; then
$RSYNC_CMD
fi
done

在这里插入图片描述

chmod +x /opt/inotify.sh
chmod 777 /var/www/html/
chmod +x /etc/rc.d/rc.local
echo '/opt/inotify.sh' >> /etc/rc.d/rc.local				#加入开机自动执行

标签:文件,rsync,同步,inotify,etc,rsyncd,var,远程
来源: https://blog.csdn.net/whb1751178448/article/details/114573119