- 论坛徽章:
- 0
|
今天在配rsync+inotify时,在服务端(分发服务器)配置完inotify和同步脚本,在客户端配置完rsync后,在服务端执行脚本测试时为什么当我在服务端增加文件后,因为客户端目录原本是空的,在inotify同步后服务端文件被删除了?正常情况应该是客户端随之增加文件才对。多谢大家帮看下
配置如下:
客户端:(192.168.159.130)
[root@master ~]# cat /etc/rsyncd.conf
uid = nobody
gid = nobody
use chroot = no
max connections = 10
strict modes = yes
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log
[node1]
path = /root/node1
comment = node1 file
ignore errors
read only = no
hosts allow = *
list = true
uid = root
gid = root
auth users = node1
secrets file = /etc/server.pass
服务端:(192.168.159.139)
[root@node1 ~]# cat /etc/server.pass
node1
[root@node1 ~]# cat inotify_rsync.sh
#!/bin/bash
node1=192.168.159.130
src=/root/node/
dst1=node1
user1=node1
/usr/local/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/local/bin/rsync -vzrtopg --delete --progress ${user1}@${node1}: {dst1} ${src} --password-file=/etc/server.pass
echo "${files} was rsynced" >>/tmp/rsync.log 2>&1
done
|
|