inotify+rsync实时同步
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了inotify+rsync实时同步相关的知识,希望对你有一定的参考价值。
server部署:#!/bin/baash
rpm -qa inotify-tools && yum -y install inotify-tools
inotifywait -mrq /data --format ‘%w%f‘ -e create,delete,close_write,moved_to|\
while read line
do
rsync -az --delete /data/ [email protected]::backup --password-file=/etc/rsync.password
done
以上是关于inotify+rsync实时同步的主要内容,如果未能解决你的问题,请参考以下文章