Linux服务-rsync

1. rsync简介

rsync是linux系统下的数据镜像备份工具。使用快速增量备份工具Remote Sync可以远程同步,支持本地复制,或者与其他SSH、rsync主机同步。

2. rsync特性

rsync支持很多特性:

  • 可以镜像保存整个目录树和文件系统
  • 可以很容易做到保持原来文件的权限、时间、软硬链接等等
  • 无须特殊权限即可安装
  • 快速:第一次同步时rsync会复制全部内容,但在下一次只传输修改过的文件。rsync在传输数据的过程中可以实行压缩及解压缩操作,因此可以使用更少的带宽
  • 安全:可以使用scp、ssh等方式来传输文件,当然也可以通过直接的socket连接
  • 支持匿名传输,以方便进行网站镜象
  • 多用于大批量小文件,大的文件如数据库文件一般用nfs,samba

3. rsync的ssh认证协议

rsync命令来同步系统文件之前要先登录remote主机认证,认证过程中用到的协议有2种

  • ssh协议
  • rsync协议

rsync server端不用启动rsync的daemon进程,只要获取remote host的用户名和密码就可以直接rsync同步文件
rsync server端因为不用启动daemon进程,所以也不用配置文件/etc/rsyncd.conf

ssh认证协议跟scp的原理是一样的,如果在同步过程中不想输入密码就用ssh-keygen -t rsa打通通道

//这种方式默认是省略了 -e ssh 的,与下面等价:
[root@cwh ~]# rsync -avz test -e 'ssh' root@192.168.112.149:/root
-a //文件宿主变化,时间戳不变
-z //压缩数据传输
root@192.168.112.149's password:
sending incremental file list sent 71 bytes received 17 bytes 25.14 bytes/sec
total size is 0 speedup is 0.00
//在149上查看
[root@149 ~]# ls
test //如果ssh协议端口号不是默认的需要添加-p选项指定端口

4. rsync命令

//Rsync的命令格式常用的有以下三种:
rsync [OPTION]... SRC DEST
rsync [OPTION]... SRC [USER@]HOST:DEST
rsync [OPTION]... [USER@]HOST:SRC DEST //对应于以上三种命令格式,rsync有三种不同的工作模式:
1.拷贝本地文件
[root@cwh ~]# rsync -avz test/ bbb/
sending incremental file list
created directory bbb
./
aaa sent 101 bytes received 64 bytes 330.00 bytes/sec
total size is 0 speedup is 0.00
[root@cwh ~]# ls bbb/
aaa 2.使用一个远程shell程序(如rsh、ssh)来实现将本地机器的内容拷贝到远程机器
[root@cwh ~]# rsync -avz bbb root@192.168.112.149:/root
root@192.168.112.149's password:
sending incremental file list
bbb/
bbb/ccc sent 117 bytes received 39 bytes 104.00 bytes/sec
total size is 0 speedup is 0.00
//在149上查看
[root@149 ~]# ls bbb/
ccc 3.使用一个远程shell程序(如rsh、ssh)来实现将远程机器的内容拷贝到本地机器
[root@cwh ~]# rm -rf bbb/
[root@cwh ~]# rsync -avz root@192.168.112.149:/root/bbb /root
root@192.168.112.149's password:
receiving incremental file list
bbb/
bbb/ccc sent 47 bytes received 117 bytes 65.60 bytes/sec
total size is 0 speedup is 0.00
[root@cwh ~]# ls
anaconda-ks.cfg
bbb //rsync常用选项:
-a, --archive //归档
-v, --verbose //啰嗦模式
-q, --quiet //静默模式
-r, --recursive //递归
-p, --perms //保持原有的权限属性
-z, --compress //在传输时压缩,节省带宽,加快传输速度
--delete //在源服务器上做的删除操作也会在目标服务器上同步

5. rsync+inotify

rsync优点:

rsync与传统的cp、tar备份方式相比,rsync具有安全性高、备份迅速、支持增量备份等优点,通过rsync可以解决对实时性要求不高的数据备份需求,例如定期的备份文件服务器数据到远端服务器,对本地磁盘定期做数据镜像等。

rsync缺点:

  • rsync同步数据时,需要扫描所有文件后进行比对,进行差量传输。如果文件数量达到了百万甚至千万量级,扫描所有文件将是非常耗时的。而且正在发生变化的往往是其中很少的一部分,这是非常低效的方式
  • rsync不能实时的去监测、同步数据,虽然它可以通过linux守护进程的方式进行触发同步,但是两次触发动作一定会有时间差,这样就导致了服务端和客户端数据可能出现不一致,无法在应用故障时完全的恢复数据

改进:

Inotify是一种强大的、细粒度的、异步的文件系统事件监控机制,linux内核从2.6.13起,加入了Inotify支持,通过Inotify可以监控文件系统中添加、删除,修改、移动等各种细微事件,利用这个内核接口,第三方软件就可以监控文件系统下文件的各种变化情况,而inotify-tools就是这样的一个第三方软件。

在前面有讲到,rsync可以实现触发式的文件同步,但是通过crontab守护进程方式进行触发,同步的数据和实际数据会有差异,而inotify可以监控文件系统的各种变化,当文件有任何变动时,就触发rsync同步,这样刚好解决了同步数据的实时性问题

rsync+inotify实验:

环境说明:

服务器类型 IP地址 应用 操作系统
源服务器 172.16.12.128 rsync
inotify-tools
脚本
centos7/redhat7
目标服务器 172.16.12.129 rsync centos7/redhat7

实验需求:

部署rsync+inotify同步/etc目录至目标服务器149的/cwh/下。

//第一步将服务端和客户端的防火墙和selinux关闭
//服务端
[root@cwhsever ~]# systemctl stop firewalld
[root@cwhsever ~]# setenforce 0
//客户端
[root@cwhclient ~]# systemctl stop firewalld
[root@cwhclient ~]# setenforce 0 //第二步安装rsync服务端软件
//服务端
[root@cwhsever ~]# yum -y install rsync
//客户端
[root@cwhclient ~]# yum -y install rsync //第三步在客户机上设置rsyncd.confd额配置文件
#部署rsync+inotify同步/etc目录至目标服务器149的/cwh/下 log file = /var/log/rsyncd.log //日志文件位置,启动rsync后自动产生这个文件,无需提前创建
pidfile = /var/run/rsyncd.pid //pid文件的存放位置
lock file = /var/run/rsync.lock //支持max connections参数的锁文件
secrets file = /etc/rsync.pass //用户认证配置文件,里面保存用户名称和密码,必须手动创建这个文件 [test_from_149] //自定义同步名称,类似samba挂载目录
path = /cwh/ //rsync客户端数据存放路径,服务端的数据将同步至此目录
uid = root //设置rsync运行权限为root
gid = root //设置rsync运行权限为root
port = 873 //设置rsync端口
ignore errors //表示出现错误忽略错误
use chroot = no //默认为true,修改为no,增加对目录文件软连接的备份,不改为no无法备份软连接
read only = no //设置rsync服务端为读写权限,只读无法同步
list = no //不显示rsync服务端资源列表
max connections = 200 //对大连接数
timeout = 600 //设置超时时间
auth users = admin //执行数据同步的用户名,可以设置多个用逗号隔开,要与写入/etc/rsync.pass的用户名一致
hosts allow = 172.16.12.128 //(可以不设置)允许进行数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
hosts deny = 192.168.1.1 //(可以不设置)禁止数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开 //第四步创建用户认证文件(也就是写在rsyncd.conf中的用户配置文件)
[root@cwhclient ~]# echo 'admin:123456' > /etc/rsync.pass
[root@cwhclient ~]# cat /etc/rsync.pass
admin:123456 //第五步设置用户认证文件权限
[root@cwhclient ~]# chmod 600 /etc/rsync.pass //第六步在客户端上启动rsync服务并设置开机自启动
[root@cwhclient ~]# systemctl restart rsyncd
[root@cwhclient ~]# systemctl enable rsyncd //第七步查看客户机上rsync的端口是否打开
[root@cwhclient ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 5 *:873 *:*
LISTEN 0 128 *:111 *:*
LISTEN 0 128 *:22 *:*
LISTEN 0 100 127.0.0.1:25 *:*
LISTEN 0 5 :::873 :::*
LISTEN 0 128 :::111 :::*
LISTEN 0 128 :::22 :::*
LISTEN 0 100 ::1:25 :::* //下面操作在源服务器端操作
//第八步关闭服务端防火墙与SELINUX
[root@cwhsever ~]# systemctl stop firewalld
[root@cwhsever ~]# setenforce 0 //第九步配置yum源(最好是163的网络源)
[root@cwhserver ~]# cd /etc/yum.repos.d/
[root@cwhserver yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
[root@cwhserver ~]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@cwhserver ~]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo //第十步装好163网络源后安装epel源
[root@cwhserver ~]# yum -y install epel-release //第十一步安装rsync服务端软件,只需要安装,不要启动,不需要配置(如果之前已经安装则不需要再次安装)
[root@cwhsever ~]# yum -y install rsync //第十二步创建认证密码文件,需要将密码写入/etc/rsyncd.pass(如果没有该目录则创建要与客户端一制)中密码要与客户端写入pass文件中的密码一致
[root@cwhsever ~]# echo '123456' > /etc/rsync.pass //注意如果已经创建了该pass目录不要使用重定向
[root@cwhsever ~]# chmod 600 /etc/rsync.pass //第十二步在源服务器上创建测试目录,然后在源服务器同步到客户端
[root@cwhsever ~]# mkdir aaa
[root@cwhsever ~]# touch aaa/bbb
[root@cwhsever ~]# rsync -avH --port 873 --progress --delete /root/aaa admin@192.168.112.149::cwh_from_149 --password-file=/etc/rsync.pass
sending incremental file list
aaa/
aaa/bbb
0 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=0/2) sent 124 bytes received 47 bytes 342.00 bytes/sec
total size is 0 speedup is 0.00 //在客户端查看
[root@cwhclient ~]# ls /cwh/
aaa
[root@cwhclient ~]# ls /cwh/aaa/
bbb
//说明测试成功 //第十三步安装inotify-tools工具,实时触发rsync进行同步(注意内核等级是否支持inotify)
[root@cwhsever ~]# yum -y install make gcc gcc-c++
[root@cwhsever ~]# yum -y install inotify-tools //第十四步写同步脚本,此步乃最最重要的一步,请慎之又慎。让脚本自动去检测我们制定的目录下,文件发生的变化,然后再执行rsync的命令把它同步到我们的服务器端去 [root@localhost ~]# mkdir /scripts/
[root@localhost ~]# vim /scripts/inotify.sh
#!/bin/bash
host=192.168.112.149 //目标服务器的ip(备份服务器)
src=/etc/ //在源服务器上所要监控的备份目录(此处可以自定义,但是要保证存在)
des=cwh_from_149 //自定义的模块名,需要与目标服务器上定义的同步名称一致
password=/etc/rsync.pass //执行数据同步的密码文件
user=admin //执行数据同步的用户名
inotifywait=/usr/bin/inotifywait //命令 $inotifywait -mrq --timefmt '%Y%m%d %H:%M' --format '%T %w%f%e' -e modify,delete,create,attrib $src \
| while read files;do
rsync -avzP --delete --timeout=100 --password-file=${password} $src $user@$host::$des
echo "${files} was rsynced" >>/tmp/rsync.log 2>&1
done //第十五步
[root@localhost ~]# nohup bash /scripts/inotify.sh & //这条命是将脚本放入后台一直运行,不重启就一直运行,如果需要开机自动运行需要写入/etc/rc.local文件中 //第十六步在源服务器上生成一个新文件,并在客户端查看
[root@localhost ~]# touch /etc/lcr090
[root@cwhclient ~]# ls /cwh/ |grep lcr090
lcr090 //可以看出脚本运行成功 //第十七步设置脚本开机自动启动:
[root@localhost ~]# chmod a+x /etc/rc.local
[root@localhost ~]# echo 'nohup /bin/bash /scripts/inotify.sh' >> /etc/rc.d/rc.local
[root@localhost ~]# tail -5 /etc/rc.d/rc.local
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot. touch /var/lock/subsys/local
nohup /bin/bash /scripts/inotify.sh
//可以看出启动脚本的命令已经写入了配置文件中 //第十八步查看重启之后脚本运行结果
[root@localhost ~]# reboot
[root@localhost ~]# ps -ef|grep inotify
root 1002 995 0 18:22 ? 00:00:00 /bin/bash /scripts/inotify.sh
root 1009 1002 0 18:22 ? 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %T %w%f%e -e modify,delete,create,attrib /etc/
root 1010 1002 0 18:22 ? 00:00:00 /bin/bash /scripts/inotify.sh
root 1536 1518 0 18:23 pts/1 00:00:00 grep --color=auto inotify
//可以看出重启后脚本已经在运行 [root@localhost ~]# touch /etc/hellocwh //在服务端创建一个文件 [root@cwhclient ~]# ls /cwh/ |grep hellocwh
hellocwh
//在客户端可以看出已经同步过去了

Linux服务-rsync的更多相关文章

  1. Linux中rsync备份服务部署

    rsync介绍 rsync是一款开源的.快速的.多功能的.可实现全量及增量的本地或远程数据同步备份工具 在常驻模式(daemon mode)下,rsync默认监听TCP端口873,以原生rsync传输 ...

  2. 第11章 Linux服务管理

    1. 服务分类 (1)Linux的服务 ①Linux中绝大多数的服务都是独立的,直接运行于内存中.当用户访问时,该服务直接响应用户,其好处是服务访问响应速度快.但不利之处是系统中服务越多,消耗的资源越 ...

  3. Windows Linux 之间rsync同步CODE文件

    Windows Linux 之间rsync同步CODE文件 一.环境Windows:OS:Microsoft Windows Web Server 2008 SP1IP:192.168.88.197 ...

  4. Linux下Rsync+sersync实现数据实时同步

    inotify 的同步备份机制有着缺点,于是看了sersync同步,弥补了rsync的缺点.以下转自:http://www.osyunwei.com/archives/7447.html 前言: 一. ...

  5. Linux学习笔记(19) Linux服务管理

    1. 服务的分类 Linux服务可分为RPM包默认安装的服务和源码包安装的服务.前者可细分为独立的服务(直接作用于内存中)和基于xinetd服务.xinetd本身是独立的服务,其唯一的功能是管理其他服 ...

  6. linux程序自启动和新建linux服务的方法

    1 linux创建自启动程序    自启动的两种方法,都经过自己测试.1.1 自启动程序方法1:    在etc/rc.local在里面加入/home/robin/code/autoruntest & ...

  7. Linux服务-openssh

    目录 1. 使用 SSH 访问远程命令行 1.1 OpenSSH 简介 1.2 SSH 版本 1.3 SSH 认证方式 1.4 openSSH 的工作模式 1.5 Secure Shell 示例 1. ...

  8. 《转载》Linux服务之搭建FTP服务器&&分布式文件服务器的比较

    参考帖子: Linux服务之FTP vsftpd的使用 大型网站图片服务器架构的演进 rsync同步文件的艺术  rsync命令详解 深入理解Tomcat虚拟目录  (测试已经OK)

  9. Linux下Rsync+Inotify-tools实现数据实时同步

    Linux下Rsync+Inotify-tools实现数据实时同步 注意:下面的三个案例都是rsync 每次都是全量的同步(这就坑爹了),而且 file列表是循环形式触发rsync ,等于有10个文件 ...

随机推荐

  1. js:对象之间的复制

    1.:复制obj1,不管obj2是否有这个属性,但是ojb2中的特有属性会保留 var obj1={id:1,name:'zhangsan'} var obj2={}; for (var prop i ...

  2. Xamarin.Android UnauthorizedAccessException: Access to the path is denied

    进行文件读写,勾选了权限 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" / ...

  3. Shadowing of static functions in Java

    class A { static void fun() { System.out.println("A.fun()"); } } class B extends A { stati ...

  4. Go基础编程实践(六)—— 文件

    检查文件是否存在 在此程序同目录下创建log.txt文件,以检测. package main import ( "os" "fmt" ) func main() ...

  5. Windows状态栏图标显示异常

    1.新建TXT文档 2.写上以下代码 taskkill /im explorer.exe /f cd /d %userprofile%\appdata\local del iconcache.db / ...

  6. golang 之 context包

    概述     context是Go中广泛使用的程序包,由Google官方开发,在1.7版本引入.它用来简化在多个go routine传递上下文数据.(手动/超时)中止routine树等操作,比如,官方 ...

  7. 记录个超级Update语句

    -- UPDATE UPDATE affair_list SET deleteState = WHERE gid IN ( SELECT tt.gid FROM ( SELECT a.gid FROM ...

  8. C# vb .net实现透明特效滤镜

    在.net中,如何简单快捷地实现Photoshop滤镜组中的透明效果呢?答案是调用SharpImage!专业图像特效滤镜和合成类库.下面开始演示关键代码,您也可以在文末下载全部源码: 设置授权 第一步 ...

  9. WebServices 使用Session

    using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Web;u ...

  10. 静态工具类注入service的方法

    http://blog.sina.com.cn/s/blog_6e2d53050102wl3x.html