sersync2 实时同步配置

简介:

在同步服务器上开启sersync,将监控路径中的文件同步到目标服务器,因此需要在同步服务器配置sersync,在同步目标服务器配置rsync。

一、同步目标服务器配置rsync

 
  1. # rpm -qa |grep rsync 
  2. rsync-2.6.8-3.1 
  3. # rpm -e rsync-2.6.8-3.1

unistall系统自带安装的rsync,安装3.0版的rsync

 
  1. # wget -c http://rsync.samba.org/ftp/rsync/rsync-3.0.8.tar.gz 
  2. # tar xf rsync-3.0.8.tar.gz
  3. # ./configure --prefix=/usr && make && make install
  4. # vi /etc/rsyncd.conf

添加下面的代码到rsyncd.conf中

 
  1. uid = nobody 
  2. gid = nobody 
  3. use chroot = no 
  4. strict modes = yes 
  5. max connections = 200 
  6. pid file = /var/run/rsyncd.pid 
  7. lock file = /var/run/rsync.lock 
  8. log file = /var/log/rsyncd.log 
  9.  
  10. [test] 
  11. path = /home/
  12. comment = test 
  13. read only = no 
  14. write only = no 
  15. ignore errors = yes 
  16. list = yes 
  17. uid = root 
  18. gid = root 

启动rsync服务

 
  1. # rsync --daemon 

二、配置sersync2

sersync2是金山逍遥网技术支持部平台组周洋童鞋,开发的一款基于 inotify + rsync 的大量文件的多服务器自动同步程序,目前已开源,开源协议为 New BSD License,项目的下载地址:

 
  1. http://code.google.com/p/sersync/ 

这个配置超简单的,下载文件,解压即可

 
  1. # wget -c http://sersync.googlecode.com/files/sersync2.5_64bit_binary_stable_final.tar.gz 
  2. # tar xf sersync2.5_64bit_binary_stable_final.tar.gz 
  3. # cd GNU-Linux-x86 
  4. # mkdir /etc/sersync2 
  5. # cp confxml.xml /etc/sersync2 
  6. # cp sersync2 /usr/bin 

配置sersync2

 
  1. <sersync> 
  2.         <localpath watch="/data/bb"> 
  3.             <remote ip="192.168.1.4" name="test"/> 
  4.             <remote ip="192.168.1.6" name="test"/> 
  5.             <!--<remote ip="192.168.8.40" name="tongbu"/>--> 
  6.         </localpath> 
  7.         <rsync> 
  8.             <commonParams params="-artuz"/> 
  9.             <auth start="false" users="root" passwordfile="/etc/rsync.pas"/> 
  10.             <userDefinedPort start="false" port="874"/><!-- port=874 --> 
  11.             <timeout start="false" time="100"/><!-- timeout=100 --> 
  12.             <ssh start="false"/> 
  13.         </rsync> 
  14.         <failLog path="/var/log/rsync_fail.log" timeToExecute="60"/><!--default every 60mins execute once--> 
  15.         <crontab start="false" schedule="600"><!--600mins--> 
  16.             <crontabfilter start="false"> 
  17.                 <exclude expression="*.php"></exclude> 
  18.                 <exclude expression="info/*"></exclude> 
  19.             </crontabfilter> 
  20.         </crontab> 
  21.         <plugin start="false" name="command"/> 
  22.     </sersync> 

表明要将同步服务器上本地的/data/bb 路径下的文件,同步到远程服务器 192.168.1.4 与 192.168.1.6上的test 模块下

接下来,运行sersync2 

#  sersync2 -r -o /etc/sersync2/confxml.xml

-r的意义

 
  1. -r 在开启实时监控之前对同步服务器目录与远程目标机目录进行一次整体同步 

运行完了输出

 
  1. set the system param 
  2. execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches 
  3. execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events 
  4. parse the command param 
  5. option: -r      rsync all the local files to the remote servers before the sersync work 
  6. option: -d      run as a daemon 
  7. option: -o      config xml name:  /etc/sersync2/confxml.xml 
  8. daemon thread num: 10 
  9. parse xml config file 
  10. host ip : localhost     host port: 8008 
  11. daemon start,sersync run behind the console 
  12. config xml parse success 
  13. please set /etc/rsyncd.conf max connections=0 Manually 
  14. sersync working thread 112  = 1(primary thread) + 1(fail retry thread) + 10(daemon sub threads) 
  15. Max threads numbers is: 32 = 12(Thread pool nums) + 20(Sub threads) 
  16. please according your cpu ,use -n param to adjust the cpu rate 
  17. ------------------------------------------ 
  18. rsync the directory recursivly to the remote servers once 
  19. working please wait... 
  20. execute command: cd /data/bb && rsync -artuz -R --delete ./ 192.168.1.4::test >/dev/null 2>&1 
  21. run the sersync: 
  22. watch path is: /data/bb 

sersync2的参数

 
  1. sersync2 -h 
  2. set the system param 
  3. execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches 
  4. execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events 
  5. parse the command param 
  6. _______________________________________________________ 
  7. 参数-d:启用守护进程模式 
  8. 参数-r:在监控前,将监控目录与远程主机用rsync命令推送一遍 
  9. c参数-n: 指定开启守护线程的数量,默认为10个 
  10. 参数-o:指定配置文件,默认使用confxml.xml文件 
  11. 参数-m:单独启用其他模块,使用 -m refreshCDN 开启刷新CDN模块 
  12. 参数-m:单独启用其他模块,使用 -m socket 开启socket模块 
  13. 参数-m:单独启用其他模块,使用 -m http 开启http模块 
  14. 不加-m参数,则默认执行同步程序 
  15. ________________________________________________________________ 

索性一次性运行

 
  1. #  sersync2 -r -d -o /etc/sersync2/confxml.xml

其他功能待研究中



本文转自dongfang_09859 51CTO博客,原文链接:http://blog.51cto.com/hellosa/586164,如需转载请自行联系原作者

相关文章
|
存储 SQL JSON
Delta Lake、Hudi与Iceberg详解
Delta Lake、Hudi与Iceberg详解
1569 0
Delta Lake、Hudi与Iceberg详解
|
Linux
海思MMZ内存分配
海思MMZ内存分配
538 0
|
9月前
|
机器学习/深度学习 人工智能 自然语言处理
AI大模型Transformer基础结构
Transformer是2017年提出的基于注意力机制的神经网络,摒弃了传统RNN结构,采用自注意力与多头注意力机制,实现并行化处理和长距离依赖建模。其核心由编码器-解码器架构、位置编码、残差连接和层归一化组成,广泛应用于NLP任务,成为BERT、GPT等模型的基础。
908 0
|
8月前
|
监控 Linux 网络安全
如何分析 Linux 系统登录失败事件
用户身份认证是网络安全的重要组成部分,对用户登录尝试行为的审计,是识别可疑操作的关键环节。
392 0
|
监控 安全 Linux
在Linux中设定账户密码的安全性策略
这些操作应该由有经验的系统管理员进行,因为不当的配置可能导致无法预期的安全问题或者系统访问问题。此外,提升安全性的同时,也需要考虑到用户的便利性,避免设置过于严苛的政策导致用户体验不佳。通常,强密码策略配合两因素认证(2FA)将大大加强账户的安全性。
970 13
|
人工智能 并行计算 算法
一键抠图,毛发毕现:这个GitHub项目助你快速PS
快速抠图不留痕,设计看了都精神。
3167 0
一键抠图,毛发毕现:这个GitHub项目助你快速PS
|
数据可视化 前端开发 数据管理
电商项目之项目背景介绍|学习笔记
快速学习电商项目之项目背景介绍
电商项目之项目背景介绍|学习笔记
|
SQL Java 关系型数据库
MyBatisX插件
MyBatisX插件
835 0
|
分布式计算 Kubernetes 监控
容器服务Kubernetes版产品使用合集之registry.aliyuncs.com/google_containers 镜像仓库的地址是什么
容器服务Kubernetes版,作为阿里云提供的核心服务之一,旨在帮助企业及开发者高效管理和运行Kubernetes集群,实现应用的容器化与微服务化。以下是关于使用这些服务的一些建议和合集,涵盖基本操作、最佳实践、以及一些高级功能的使用方法。
1772 0
|
小程序 前端开发 Java
微信小程序点餐系统的开发与实现
微信小程序点餐系统的开发与实现
822 0

热门文章

最新文章