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实时同步的主要内容,如果未能解决你的问题,请参考以下文章

Rsync下行同步+inotify实时同步介绍和部署

inotify+rsync实现实时同步

rsync+inotify实时同步

rsync下行同步rsync+inotify实时同步(同步如饮水一样简单)

rsync+inotify实时同步

实时同步rsync+inotify