标签:rsync
是linux系统下的数据镜像备份工具——remote sync
特点:
1、可以镜像保存整个目录树或文件系统;
2、较高的数据传输效率;
3、可以借助于ssh实现安全数据传输;
4、支持匿名传输;
rsync命令的选项:
-n: 同步测试,不执行真正的同步过程;
-v: 详细输出模式
-q: 静默模式
-c: checksum,开启校验功能
-r: 递归复制
-a: 归档,保留文件的原有属性;
-p: 保留文件的权限;
-t: 保留文件的时间戳;
-l: 保留符号链接
-g: 保留属组
-o: 保留属主
-D:保留设备文件
-e ssh: 使用ssh作为传输承载;
-z: 压缩后传输;
--progress: 显示进度条
--stats: 显示如何执行压缩和传输
在172.16.249.77上推送文件至172.16.249.73
[root@MinR ~]# rsync -a /tmp/yum.repo/ 172.16.249.73:/tmp root@172.16.249.73‘s password:
在172.16.249.77上拉取172.16.249.73上的文件
[root@MinR ~]# rsync -r -v -progress -e ssh 172.16.249.73:/etc/issue /tmp root@172.16.249.73‘s password: receiving incremental file list issue sent 30 bytes received 126 bytes 24.00 bytes/sec total size is 48 speedup is 0.31 [root@MinR ~]# ls /tmp issue
rsync的服务模式
rsync是瞬时进程,需要超级守护xitend进程的监听,故先安装xitend超级守护进程
# yum install xinted –y # vim /etc/xinetd.d/rsync 把disable =yes 改为 no即可打开rsync的服务器模式
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
# allows crc checksumming etc.
service rsync
{
disable = no
flags = IPv6
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = --daemon
log_on_failure += USERID
}
为rsync提供配置文件 /etc/rsyncd.conf
# Global Settings
全局配置段
uid = nobody
gid = nobody
use chroot = no
max connections = 10
strict
modes = yes
pid file = /var/run/rsyncd.pid
log
file = /var/log/rsyncd.log
# Directory to be
synced 共享配置段
[gongxiang]
path = /data
ignore errors = yes
read only = no
write only = no
hosts allow = 172.16.0.0/16
hosts deny = *
list = false
uid
= root
gid = root
创建目录[root@MinR /]# mkdir data
重启xinetd确保xinetd监控在tcp/873端口下
[root@MinR ~]# service xinetd restart Stopping xinetd: [ OK ] Starting xinetd: [ OK ]
在客户端172.16.249.73向服务器端push和pull文件
[root@localhost ~]# rsync -a /etc/issue 172.16.249.77::gongxiang [root@localhost ~]# rsync -a 172.16.249.77::gongxiang /tmp
服务端启用用户认证的功能
在前面rsync的配置文件 /etc/rsyncd.conf的共享定义处加配置:
auth users = tt1,tt2
secrets file = /etc/rsyncd.passwd
创建密码文件/etc/rsyncd.passwd
tt1:mima1
tt2:mima2
注意:此文件不能允许其它用户有访问权限,即600权限,且密码不能超过8个字符
[root@MinR data]# chmod 600 /etc/rsyncd.passwd [root@MinR data]# ll /etc/rsyncd.passwd -rw-------. 1 root root 35 Aug 21 22:45 /etc/rsyncd.passwd
推送
[root@localhost tmp]# rsync -a /etc/issue tt1@172.16.249.77::gongxiang Password:
拉取
[root@localhost tmp]# rsync -a tt2@172.16.249.77::gongxiang /tmp Password: [root@localhost tmp]# ls issue
inotify-tools 是为linux下inotify文件监控工具提供的一套c的开发接口库函数,同时还提供了一系列的命令行工具,这些工具可以用来监控文件系统的事件。 inotify-tools是用c编写的,除了要求内核支持inotify外,不依赖于其他。inotify-tools提供两种工具,一是inotifywait,它是用来监控文件或目录的变化,二是inotifywatch,它是用来统计文件系统访问的次数。
语法:
inotifywait [-hcmrq] [-e ] [-t ] [--format ] [--timefmt ] [ ... ]
参数:
-h,–help
输出帮助信息
@
排除不需要监视的文件,可以是相对路径,也可以是绝对路径。
–fromfile
从文件读取需要监视的文件或排除的文件,一个文件一行,排除的文件以@开头。
-m,
–monitor
接收到一个事情而不退出,无限期地执行。默认的行为是接收到一个事情后立即退出。
-d,
–daemon
跟–monitor一样,除了是在后台运行,需要指定–outfile把事情输出到一个文件。也意味着使用了–syslog。
-o, –outfile
输出事情到一个文件而不是标准输出。
-s,
–syslog
输出错误信息到系统日志
-r, –recursive
监视一个目录下的所有子目录。
-q, –quiet
指定一次,不会输出详细信息,指定二次,除了致命错误,不会输出任何信息。
–exclude
正则匹配需要排除的文件,大小写敏感。
–excludei
正则匹配需要排除的文件,忽略大小写。
-t , –timeout
设置超时时间,如果为0,则无限期地执行下去。
-e , –event
指定监视的事件。
-c, –csv
输出csv格式。
–timefmt
指定时间格式,用于–format选项中的%T格式。
–format
指定输出格式。
%w 表示发生事件的目录
%f 表示发生事件的文件
%e 表示发生的事件
%Xe
事件以“X”分隔
%T 使用由–timefmt定义的时间格式
语法:
inotifywatch [-hvzrqf] [-e ] [-t ] [-a ] [-d ] [ ... ]
参数:
-h, –help
输出帮助信息
-v, –verbose
输出详细信息
@
排除不需要监视的文件,可以是相对路径,也可以是绝对路径。
–fromfile
从文件读取需要监视的文件或排除的文件,一个文件一行,排除的文件以@开头。
-z, –zero
输出表格的行和列,即使元素为空
–exclude
正则匹配需要排除的文件,大小写敏感。
–excludei
正则匹配需要排除的文件,忽略大小写。
-r, –recursive
监视一个目录下的所有子目录。
-t , –timeout
设置超时时间
-e
, –event
只监听指定的事件。
-a , –ascending
以指定事件升序排列。
-d , –descending
以指定事件降序排列。
下载安装inotify-tools
[root@MinR ~]# tar xf inotify-tools-3.14.tar.gz [root@MinR ~]# cd inotify-tools-3.14 [root@MinR inotify-tools-3.14]# ls
aclocal.m4 ChangeLog config.h.in
configure COPYING INSTALL libinotifytools Makefile.am man
NEWS src
AUTHORS config.guess config.sub configure.ac depcomp
install-sh ltmain.sh Makefile.in missing README
[root@MinR
inotify-tools-3.14]# ./configure && make && make install
编辑一个脚本
# vim jiankong.sh
#!/bin/bash
/usr/local/bin/inotifywait -rmq /data | while read file
do
echo "It is change"
rsync -a /data/ 172.16.249.73:/tmp
done
用以监控172.16.249.77的/data/下的文件的变动情况,有变动就同步到172.16.249.73下
标签:rsync
原文地址:http://tliss.blog.51cto.com/6883268/1545402