现在有A,B俩个服务器
A:192.168.0.1 #服务端
B: 192.168.0.2 #客户端
首先都安装 rsync 服务,请按照 https://blog.csdn.net/qq_28450919/article/details/82846664 来操作
rsync 安装成功后,我们来安装 inotify
B服务器:
wget https://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz #下载 inotify
tar zxvf inotify-tools-3.14.tar.gz
cd inotify-tools-3.14
./configure –prefix=/usr/local/inotify
make && make install
安装完成后,接下来配置 inotify
在 B服务器 配置:
vi /etc/rc.d/inotify.sh
脚本内容为,如发生变化 B服务器 主动提交到 A服务器
src=/home/www/blog/ #监听的目录
des=blog #你在设置 A服务器 定义的模块名称
ip=192.168.0.1 #A服务器的地址
/usr/local/inotify/bin/inotifywait -mrq --timefmt ‘%d/%m/%y/%H:%M’ --format ‘%T%w%f%e’ -e modify,delete,create,attrib $src| while
read file
do
/usr/bin/rsync -vzrtopg --progress $src backup@$ip::$des --password-file=/etc/backup.passwd
echo “$src has been resynced”
done
赋予执行权限
chmod +x /etc/rc.d/inotify.sh
执行脚本并做开机启动
/etc/rc.d/inotify.sh
echo /etc/rc.d/inotify.sh>>/etc/rc.local
千万要记得给rc.local 执行权限 我重启后老不能用 就是出现在这
chmod +x /etc/rc.local
最后测试一下 在B服务器的 /home/www/blog 修改或者新建一个文件
文件已经自动上传到 A服务器
现在已经完成了 时时同步文件