码迷,mamicode.com
首页 > 其他好文 > 详细

inotify+rsync监控实时同步

时间:2018-09-28 11:10:23      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:let   var   删除文件   -o   director   id_rsa   private   zed   rpm   

监控到Centos7-001机器上的网站内容发生变化时,就同步Centos7-001:/var/www/html/目录到Centos7-002上

Centos7-001上所做的操作

  • 安装 rsync
# yum install  rsync -y
  • 生成密钥对

    [root@centos7-001 ~]# ssh-keygen 
    Generating public/private rsa key pair.
    Enter file in which to save the key (/root/.ssh/id_rsa): 
    Created directory ‘/root/.ssh‘.
    Enter passphrase (empty for no passphrase): 
    Enter same passphrase again: 
    Your identification has been saved in /root/.ssh/id_rsa.
    Your public key has been saved in /root/.ssh/id_rsa.pub.
    The key fingerprint is:
    SHA256:3e6TNDwQTTP5BeDBusXs/7Ma/sx7LFVmSpa8PVEDNaY root@centos7-001
    The key‘s randomart image is:
    +---[RSA 2048]----+
    |           +*++= |
    |          ..++o.+|
    |           =.E oo|
    |         .o.+ *.+|
    |        S .*.o *o|
    |          ..* o.o|
    |           ..* o.|
    |           .+ *.o|
    |            .+oO*|
    +----[SHA256]-----+
  • 传递公钥给 Centos7-002(可查看Centos机器上是否生成 /root/.ssh/authorized_keys文件)
# ssh-copy-id root@192.168.195.129
Are you sure you want to continue connecting (yes/no)? yes
root@192.168.195.129‘s password: 
  • 安装 inotify-tools 工具
# yum install epel-release -y
# yum install inotify-tools -y
# rpm -q inotify-tools
  • 利用 inotifywait 命令监控本机的 /var/www/html/目录,如发生变化就同步到Centos7-002:/web_backup上(写一个脚本 inotify.sh),在后台运行此脚本(Centos7-002上需要先安装 rsync)
[root@centos7-001 ~]# cat inotify.sh 
#!/bin/bash
dir=/var/www/html/
remote_dir=192.168.195.129:/web_backup
inotifywait -rqm -e modify,create,move,delete $dir | while read a b c
do
    rsync -azP --delete $dir root@$remote_dir
done
  • 在本地上的/var/www/html/创建文件、目录,删除文件、目录,修改文件、目录
    cd /var/www/html/
    cp -f /etc/passwd ./
    mkdir apeng
    mkdir aa
    echo inotify > aa/test.txt

Centos7-002上所做的操作

  • 安装 rsync
# yum install rsync -y
  • 观察本机的 /web-back目录

技术分享图片

inotify+rsync监控实时同步

标签:let   var   删除文件   -o   director   id_rsa   private   zed   rpm   

原文地址:http://blog.51cto.com/13480443/2286937

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!