rsync 远程同步

文章目录

  • rsync
    • rsync命令
    • 来吧!展示!!
      • rsync同步
      • rsync 实时同步

rsync

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

rsync命令

rsync 选项 源位置 目标位置

常见选项

  • -a 归档模式,递归保留对象属性
  • -v 显示同步过程
  • -z 传输时进行压缩
  • -H 保留硬连接文件
  • -A 保留ACL访问控制列表信息
  • –delete 删除目标位置有的,源没有的文件,可以使文件同步
  • –checksum 根据对象的校验来决定是否跳过文件

同步命令示例
有两种格式
1. rsync 选项 用户名@主机名::模块名 路径
2. rsync://用户名@主机名/模块名 路径

来吧!展示!!

rsync同步

rsync 远程同步_第2张图片

rsync

[root@7CentOS ~]# rsync --version		##查看rsync版本,系统自带,不用安装
rsync  version 3.1.2  protocol version 31
[root@7CentOS ~]# vim /etc/rsyncd.conf 	##编辑主配置问啊进
uid = nobody	##你懂的
gid = nobody
use chroot = yes	##禁止目录
# max connections = 4
port 873
log file = /var/log/rsync.log
host allow = 20.0.0.0/32
pid file = /var/run/rsyncd.pid

[CSDN]
path = /var/www/html
comment = www.juejue.com
read only = yes
dont compress = *.rar *.gz *.zip *.tgz *.z *.Z *.rpm *.deb *.bz2	##不解压的文件格式
auth users = juejue
secrets file = /etc/rsyncd_users.db

[root@7CentOS ~]# vim /etc/rsyncd_users.db	##保证这个文件名和位置 和上面配置文件的一致
juejue:123123		##别学我用这么简单的密码,仅实验用比较懒,这周太容易被破解了
[root@7CentOS ~]# chmod 600 /etc/rsyncd_users.db
[root@7CentOS ~]# rsync --daemon
[root@7CentOS ~]# netstat -ntapu |grep 873
tcp        0      0 0.0.0.0:873             0.0.0.0:*               LISTEN      14078/rsync         
tcp6       0      0 :::873                  :::*                    LISTEN      14078/rsync
[root@7CentOS html]# cd /var/www/html/
[root@7CentOS html]# echo "This is Hello" > index.html

在被同步的客户机上输入

[root@localhost /]# cd /var/www/html/
[root@localhost html]# ls
[root@localhost html]# 
[root@localhost html]# rsync -avz [email protected]::CSDN /var/www/html/
Password: 		##输入你刚才创建的密码
receiving incremental file list
./
index.html

sent 46 bytes  received 125 bytes  11.79 bytes/sec
total size is 14  speedup is 0.08
[root@localhost html]# ls
index.html		##同步完成

制作免密同步

[root@localhost html]# mkdir /mianmi
[root@localhost html]# vim /mianmi/pwd.pass
123123
[root@localhost html]# chmod 600 /mianmi/pwd.pass	##给600权限是为了防止除管理员用户外的用户篡改文件

进行验证

[root@7CentOS html]# echo "Hello" > ABC.txt	##在 源 创建一个文件
[root@localhost html]# rsync -avz --delete --password-file=/mianmi/pwd.pass [email protected]::CSDN /var/www/html/	##客户机输入,可以看到确实不用输入密码
receiving incremental file list
./
ABC.txt

sent 46 bytes  received 142 bytes  376.00 bytes/sec
total size is 20  speedup is 0.11
[root@localhost html]# ls	##同步成功
ABC.txt  index.html
[root@localhost html]# cat ABC.txt 
Hello

也可以使用计划性任务配合使用,但是同步数据不及时,下面介绍实时监控同步

rsync 实时同步

Inotify是一个Linux内核机制,它可以监控文件系统的操作,比如读取、写入、创建等。
Inotify反应灵敏,用法非常简单,并且比cron任务的繁忙轮询高效
从版本 2.6.13 开始提供;
可以监控文件系统的变化情况,并作出通知响应;
辅助软件:inotify-tools

使用命令解释

inotifywait:用于持续监控,实时输出结果
inotifywatch:用于短期监控,任务完成后再出结果

源 端配置

[root@7CentOS ~]# vim /etc/rsyncd.conf
[CSDN]
path = /var/www/html
comment = www.juejue.com
read only = no		##这行改成no
[root@7CentOS www]# chmod 777 /var/www/html/
记得重启服务

客户端配置

[root@localhost ~]# cat /proc/sys/fs/inotify/max_queued_events
16384	##监控队列大小
[root@localhost ~]# cat /proc/sys/fs/inotify/max_user_instances
128		##最多监控实例数
[root@localhost ~]# cat /proc/sys/fs/inotify/max_user_watches
8192	##每个实例最多监控文件数
[root@localhost ~]# vim /etc/sysctl.conf 
fs.inotify.max_queued_events = 16348
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
[root@localhost ~]# sysctl -p
fs.inotify.max_queued_events = 16348
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

安装软件 inotify
[root@localhost ~]# mkdir /bao
[root@localhost ~]# cd /bao
[root@localhost bao]# rz -E
rz waiting to receive.
[root@localhost bao]# tar zxvf inotify-tools-3.14.tar.gz
[root@localhost bao]# cd inotify-tools-3.14/
[root@localhost inotify-tools-3.14]# yum -y install gcc gcc-c++		##安装环境依赖      
[root@localhost inotify-tools-3.14]# ls
aclocal.m4    config.h.in   COPYING     libinotifytools  man      src
AUTHORS       config.sub    depcomp     ltmain.sh        missing
ChangeLog     configure     INSTALL     Makefile.am      NEWS
config.guess  configure.ac  install-sh  Makefile.in      README
[root@localhost inotify-tools-3.14]# ./configure
[root@localhost inotify-tools-3.14]# make && make install

再打开一个客户机的终端界面

[root@localhost bao]# vim inotify.sh	##客户机编辑脚本监控共享目录变化并启动,方便管理
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e create,delete,move,modify,attrib,move,delete /var/www/html/"RSYNC_CMD="rsync -azH --delete --password-file=/mianmi/pwd.pass /var/www/html/ [email protected]::CSDN /var/www/html"

$INOTIFY_CMD | while read DIRECTORY EVENT FILE
do
    if [ $(pgrep rsync | wc -l) -le 0 ] ; then
        $RSYNC_CMD
    fi
done

[root@localhost bao]# chmod 755 inotify.sh 
[root@localhost bao]# chmod 777 /var/www/html/
[root@localhost bao]# chmod +x inotify.sh 
[root@localhost bao]# ./inotify.sh

验证

第三个客户端
[root@localhost ~]# inotifywait -mrq -e modify,create,move,delete  /var/www/html
## modify 修改,create 创建,move 移动, delete 删除
/var/www/html/ DELETE DEMAXIYA.txt
/var/www/html/ CREATE DEMAXIYA.txt
/var/www/html/ MODIFY DEMAXIYA.txt

[root@localhost html]# rm -rf *
[root@localhost html]# echo "123456" >DEMAXIYA.txt

[root@7CentOS html]# ls
DEMAXIYA.txt

你可能感兴趣的:(群集架构,linux)