标签:let var 删除文件 -o director id_rsa private zed rpm
监控到Centos7-001机器上的网站内容发生变化时,就同步Centos7-001:/var/www/html/目录到Centos7-002上Centos7-001上所做的操作
# 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]-----+
# 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上所做的操作
# yum install rsync -y
标签:let var 删除文件 -o director id_rsa private zed rpm
原文地址:http://blog.51cto.com/13480443/2286937