知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

sersync2大量小文件实时同步

发布时间:2014-09-05 16:58:25作者:知识屋

sersync2可以实现一台机器上的某个目录实时同步到多台机器,非常适合大量小文件如web网页。
1. 配置同步目标服务器
# vi /etc/rsyncd.conf
uid = root
gid = root
max connections = 36000
use chroot = no
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
[rsync]         # 同步名
path = /opt/rsync
comment = test files
ignore error = yes
read only = no
hosts allow = 192.168.0.254
hosts deny = *
Note: '/etc/rsyncd.conf' 不存在,要自己创建, 多台目标机器分别进行如上配置。
2. 启动目标服务器rsync准备接收数据
# rsync --daemon
3. 在主服务器上安装配置sersync
# tar xf sersync2.5_64bit_binary_stable_final.tar.gz
# cd GNU-Linux-x86/
# vi confxml.xml, 修改如下行
<sersync>
        <localpath watch="/opt/rsync">  # 本地同步目标
        <remote ip="192.168.0.1" name="rsync"/>  # 目录服务器IP和同步名
        <remote ip="192.168.0.2" name="rsync"/>
</localpath>
4. 运行sersync
# ./sersync2 -d -r

作者“William的记忆碎片”

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜