返噗掖
2025-8-10 14:28:27
方案架构
- 源服务器:部署 Sersync(监控文件变化) + Rsync(推送数据)
- 目标服务器:部署 Rsync Daemon(接收数据)
- 同步逻辑:源服务器文件变动 → Sersync 实时触发 → Rsync 增量同步至目标服务器
详细实施步骤
一、目标服务器配置(数据接收端)
bash
yum install rsync -y # CentOS
apt install rsync -y # Ubuntu
bash
vim /etc/rsyncd.conf
ini
uid = root
gid = root
use chroot = no
max connections = 2000
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log
[data_backup] # 模块名称(客户端同步时指定)
path = /data/backup # 同步目录
comment = Backup Directory
read only = no # 允许写入
auth users = rsync_user # 认证用户
secrets file = /etc/rsync.password # 密码文件
bash
echo "rsync_user:your_password" > /etc/rsync.password
chmod 600 /etc/rsync.password
bash
mkdir -p /data/backup
chown -R rsync_user:rsync_user /data/backup
bash
systemctl start rsyncd
systemctl enable rsyncd
bash
firewall-cmd --add-port=873/tcp --permanent
firewall-cmd --reload
二、源服务器配置(数据发送端)
bash
yum install rsync -y # CentOS
apt install rsync -y # Ubuntu
bash
echo "your_password" > /etc/rsync.password
chmod 600 /etc/rsync.password
bash
rsync -avz /source/data/ rsync_user@目标服务器IP::data_backup --password-file=/etc/rsync.password
bash
wget https://github.com/wsgzao/sersync/raw/master/sersync2.5.4_64bit_binary_stable_final.tar.gz
tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz -C /opt/
mv /opt/GNU-Linux-x86/ /opt/sersync
bash
vim /opt/sersync/confxml.xml
xml
# 归档模式(保留属性)
bash
/opt/sersync/sersync2 -d -r -o /opt/sersync/confxml.xml
- 参数说明:
- -d:守护进程模式
- -r:启动时先全量同步
- -o:指定配置文件
- 设置开机自启
bash
echo "/opt/sersync/sersync2 -d -r -o /opt/sersync/confxml.xml" >> /etc/rc.local
chmod +x /etc/rc.local
三、验证实时同步
bash
touch /source/data/testfile.txt
bash
ls /data/backup # 应出现 testfile.txt
bash
tail -f /opt/sersync/rsync_fail_log.sh # 同步失败日志
四、多维优化与监控
1. 性能优化
- 调整 inotify 限制(解决监控文件数不足问题):
bash
echo "fs.inotify.max_user_watches=1000000" >> /etc/sysctl.conf
sysctl -p
xml
2. 高可用方案
- 双活监控:部署多个 Sersync 进程监控不同目录。
- 异常重启:添加 crontab 监控进程:
bash
*/5 * * * * pgrep sersync2 || /opt/sersync/sersync2 -d -o /opt/sersync/confxml.xml
3. 安全加固
- Rsync 最小权限:
- 目标服务器使用非 root 用户运行 Rsync。
- 配置文件设置 uid = rsync_user, gid = rsync_user。
- SSH 隧道加密:
xml
4. 故障排查工具
bash
/opt/sersync/sersync2 -r -o /opt/sersync/confxml.xml
bash
tail -f /proc/sys/fs/inotify/* # 监控事件队列
方案优势
<ol start="1">秒级延迟:Sersync 基于 inotify 内核事件触发,响应速度 |
|
|
|
相关推荐
|
|