監控到Centos7-001機器上的網站內容發生變化時,就同步Centos7-001:/var/www/html/目錄到Centos7-002上html
Centos7-001上所作的操做web
# yum install rsync -y
生成密鑰對centos
[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]-----+
# 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:
# yum install epel-release -y # yum install inotify-tools -y # rpm -q inotify-tools
[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
cd /var/www/html/ cp -f /etc/passwd ./ mkdir apeng mkdir aa echo inotify > aa/test.txt
Centos7-002上所作的操做bash
# yum install rsync -y