CentOS6.6 rsync+inotify实现数据时时备份
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6.6 rsync+inotify实现数据时时备份相关的知识,希望对你有一定的参考价值。
rsync+inotify实现数据时时备份
注意:rsync的daemon模式已提前配置好了,只需要配置inotify即可。
基本环境
系统版本 | 主机名 | IP地址 | 角色 | 备份/监控目录 |
CentOS 6.6 | backup | 10.0.0.10 | rsync服务端 | /backup |
CentOS 6.6 | nfs-server | 10.0.0.7 | rsync客户端 | /data |
inotify安装配置
查看系统是否支持inotify,显示以下三个文件表示支持
[[email protected] tools]# ls -l/proc/sys/fs/inotify/
total 0
-rw-r--r-- 1 root root 0 May 16 19:44max_queued_events
-rw-r--r-- 1 root root 0 May 16 19:44max_user_instances
-rw-r--r-- 1 root root 0 May 16 19:44max_user_watches
下载inotify工具包并解压安装
[[email protected] tools]# wget--no-check-certificate https://cloud.github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz
[[email protected] tools]# tar-zxvf inotify-tools-3.14.tar.gz
[[email protected] tools]# cdinotify-tools-3.14
[[email protected]]# ./configure --prefix=/usr/local/inotify-tools-3.14
[[email protected]]# make && make install
[[email protected] inotify-tools-3.14]#ln -s /usr/local/inotify-tools-3.14/ /usr/local/inotify-tools
工具集介绍
[[email protected]]# ls /usr/local/inotify-tools/bin
inotifywait inotifywatch
一共安装了2个工具(命令),即inotifywait和inotifywatch
inotifywait:在被监控的文件或目录上等待特定文件系统事件(open、close、delete等)发生,执行后处于阻塞状态,适合在shell脚本中使用。
inotifywatch:收集被监视的文件系统使用度统计数据,指文件系统事件发生的次数统计。
监控本地/data目录
[[email protected] /]#/usr/local/inotify-tools/bin/inotifywait -mrq --timefmt ‘%d/%m/%y %H:%M‘--format ‘%T %w%f‘ -e create,close_write,delete /data
create:监控创建文件
close_write:监控修改文件
delete:监控删除文件
用inotify监控nfs-server的/data目录,然后调用rsync时时备份到backup主机的/backup目录,并写成脚本完成
#!/bin/bash
##############################backupscripts#######################
#author wangning
#qq 1198143315
#date 2017-6-9
#E-mail [email protected]
inotify=/usr/local/inotify-tools/bin/inotifywait
$inotify -mrq --format ‘%w%f‘ -e create,close_write,delete/data \
|while read file
do
cd / &&
rsync -az ./data/ [email protected]::backup/ \
--password-file=/etc/rsync.password
done
关键参数说明
在/proc/sys/fs/inotify/目录下有三个文件,对inotify机制有一定的限制
max_user_watches:设置inotifywait或inotifywatch命令可以监视的文件数量(单进程)
max_user_instances:设置每个用户可以运行的inotifywait或inotifywatch命令的进程数
max_queued_events:设置inotify实例事件(event)队列可容纳的事件数量
工作中如果参数不够用,可以调大一些
[[email protected] scripts]# echo"50000000" >/proc/sys/fs/inotify/max_user_watches
[[email protected] scripts]# echo"50000000" >/proc/sys/fs/inotify/max_queued_events
本文出自 “飞奔的骆驼” 博客,请务必保留此出处http://wn2100.blog.51cto.com/9915310/1941573
以上是关于CentOS6.6 rsync+inotify实现数据时时备份的主要内容,如果未能解决你的问题,请参考以下文章