linux下两台服务器文件实时同步

假设两个服务器:

172.16.0.1 源服务器 有目录 /opt/profile/

172.16.0.2 目标服务器 有目录 /opt/profile/

需要实现172.16.0.1 下的 /opt/profile/ 文件夹下如果有文件更新自动同步到172.16.0.2 /opt/profile/ 文件夹下

实现方式: 通过rsync+inotify-tools结合来实现

需要在源服务器安装软件:

rsync(同步软件,源服务器: 是rsync客户端,不需要配置)
inotify-tools 工具:该工具为文件实时监控工具(只需要在源服务器安装配置)
安装inotify-tools后会在相关安装目录下生成如下两个文件:
/usr/bin/
-rwxr-xr-x. 1 root root 28224 Sep 5 2019 inotifywait
-rwxr-xr-x. 1 root root 24056 Sep 5 2019 inotifywatch

则表示安装成功。

在源服务器上新建脚本:
inotify_bak.sh



#!/bin/bash
src=/opt/profile/
/usr/bin/inotifywait -mrq --timefmt '%d/%m/%y %H:%M' --format '%T %w%f%e' -e close_write,delete,create,attrib $src |  while read file
do
    
      /usr/bin/rsync -arzuq $src 172.16.0.2::file_bak

      echo "  ${file} was rsynced" >>/opt/log/rsync.log 2>&1
done

注意: 这里的 file_bak是在目标服务器/etc/rsyncd.conf里配置的模块名称:[file_bak]

赋予执行权限: chmod +x inotify_bak.sh

设置开机自动启动脚本
编辑/etc/rc.local 文件
添加如下cd /usr/local/freeswitch && inotify_bak.sh &
保存退出

需要在目标服务器安装:

rsync目标服务器,需要配置/etc/rsyncd.conf里的内容
文件内容如下:

uid = root
gid = root
use chroot = no
max connections = 10
strict modes = yes
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsyncd.lock
log file= =/var/run/rsyncd.log

[file_bak]
path= /opt/profile/
comment= analyse
read only = false
hosts allow = 172.16.0.1

添加开机自动启动脚本
编辑/etc/rc.local文件,添加如下内容,保存并退出
/usr/bin/rsync --daemon

启动服务及脚本

目标服务器:先启动rsync后台服务: /usr/bin/rsync --daemon
源服务器: 执行 inotify_bak.sh &

测试

在源服务器 /opt/profile/ 文件夹下新建目录或文件,inotify_bak.sh脚本会检测到,然后同步到目标服务器的相关目录下。

可以查看日志文件: /opt/log/rsync.log 命令如下:观察实时同步的情况。
tail -f /opt/log/rsync.log

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值