1、安装sersync软件

1.1 将软件上传到服务器当中并解压

1、上传软件到服务器上 rz -E
为了便于管理上传位置统一设置为 /server/tools 中
2、解压软件包

  1. [root@backup sersync_installdir_64bit]# tree
  2. .
  3. └── sersync
  4. ├── bin
  5. └── sersync
  6. ├── conf
  7. └── confxml.xml
  8. └── logs

1.2 二进制包安装方法

二进制包安装软件方法(绿色软件安装方法):
直接解压就可以使用

  1. [root@nfs01 sersync_installdir_64bit]# mv sersync/ /usr/local/
  2. [root@nfs01 tools]# tree /usr/local/sersync/
  3. /usr/local/sersync/
  4. ├── bin
  5. └── sersync
  6. ├── conf
  7. └── confxml.xml
  8. └── logs
  9. 3 directories, 2 files

2、编写sersync配置文件

2.1 常见的语法格式

rsync 配置文件编写:ini语法 sersync配置文件编写:xml语法 ansible配置文件编写:yml 语法

2.2 修改配置文件

编写前备份

  1. [root@backup conf]# ll
  2. total 4
  3. -rw-r--r-- 1 root root 2214 Oct 26 2011 confxml.xml
  4. [root@backup conf]# cp confxml.xml{,.bak}

6-11行表示排除同步的数据,等价于 —exclude 功能,表示排除

  1. <filter start="false">
  2. <exclude expression="(.*)\.svn"></exclude>
  3. <exclude expression="(.*)\.gz"></exclude>
  4. <exclude expression="^info/*"></exclude>
  5. <exclude expression="^static/*"></exclude>
  6. </filter>

12-21行是利用inotify的功能监控指定的事件,等价与 -e create,delete…… 表示指定监控事件信息

  1. <inotify>
  2. <delete start="true"/>
  3. <createFolder start="true"/>
  4. <createFile start="false"/>
  5. <closeWrite start="true"/>
  6. <moveFrom start="true"/>
  7. <moveTo start="true"/>
  8. <attrib start="false"/>
  9. <modify start="false"/>
  10. </inotify>

24-28行:推送到哪里 name=模块 是rsync服务器的地址

  1. <localpath watch="/data"> #监控那个目录
  2. <remote ip="172.16.1.41" name="backup"/>
  3. <!--<remote ip="192.168.8.39" name="tongbu"/>-->
  4. <!--<remote ip="192.168.8.40" name="tongbu"/>-->
  5. </localpath>

29-35行 定义rsync推送时的参数信息。
注意:不要有单词拼写错误 (true),否则程序不能正常启动,卡死

  1. <rsync>
  2. <commonParams params="-az"/>
  3. <auth start="true" users="rsync_backup" passwordfile="/etc/rsync.password"/>
  4. <userDefinedPort start="false" port="874"/><!-- port=874 -->
  5. <timeout start="false" time="100"/><!-- timeout=100 -->
  6. <ssh start="false"/>
  7. </rsync>

配置文件最终内容:

  1. [root@nfs01 tools]# cat /usr/local/sersync/conf/confxml.xml
  2. <?xml version="1.0" encoding="ISO-8859-1"?>
  3. <head version="2.5">
  4. <host hostip="localhost" port="8008"></host>
  5. <debug start="false"/>
  6. <fileSystem xfs="false"/>
  7. <filter start="false">
  8. <exclude expression="(.*)\.svn"></exclude>
  9. <exclude expression="(.*)\.gz"></exclude>
  10. <exclude expression="^info/*"></exclude>
  11. <exclude expression="^static/*"></exclude>
  12. </filter>
  13. <inotify>
  14. <delete start="true"/>
  15. <createFolder start="true"/>
  16. <createFile start="false"/>
  17. <closeWrite start="true"/>
  18. <moveFrom start="true"/>
  19. <moveTo start="true"/>
  20. <attrib start="false"/>
  21. <modify start="false"/>
  22. </inotify>
  23. <sersync>
  24. <localpath watch="/data">
  25. <remote ip="172.16.1.41" name="nfsbackup"/>
  26. <!--<remote ip="192.168.8.39" name="tongbu"/>-->
  27. <!--<remote ip="192.168.8.40" name="tongbu"/>-->
  28. </localpath>
  29. <rsync>
  30. <commonParams params="-az"/>
  31. <auth start="true" users="rsync_backup" passwordfile="/etc/rsync.password"/>
  32. <userDefinedPort start="false" port="874"/><!-- port=874 -->
  33. <timeout start="false" time="100"/><!-- timeout=100 -->
  34. <ssh start="false"/>
  35. </rsync>
  36. <failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->
  37. <crontab start="false" schedule="600"><!--600mins-->
  38. <crontabfilter start="false">
  39. <exclude expression="*.php"></exclude>
  40. <exclude expression="info/*"></exclude>
  41. </crontabfilter>
  42. </crontab>
  43. <plugin start="false" name="command"/>
  44. </sersync>
  45. <plugin name="command">
  46. <param prefix="/bin/sh" suffix="" ignoreError="true"/> <!--prefix /opt/tongbu/mmm.sh suffix-->
  47. <filter start="false">
  48. <include expression="(.*)\.php"/>
  49. <include expression="(.*)\.sh"/>
  50. </filter>
  51. </plugin>
  52. <plugin name="socket">
  53. <localpath watch="/opt/tongbu">
  54. <deshost ip="192.168.138.20" port="8009"/>
  55. </localpath>
  56. </plugin>
  57. <plugin name="refreshCDN">
  58. <localpath watch="/data0/htdocs/cms.xoyo.com/site/">
  59. <cdninfo domainname="ccms.chinacache.com" port="80" username="xxxx" passwd="xxxx"/>
  60. <sendurl base="http://pic.xoyo.com/cms"/>
  61. <regexurl regex="false" match="cms.xoyo.com/site([/a-zA-Z0-9]*).xoyo.com/images"/>
  62. </localpath>
  63. </plugin>
  64. </head>

3、第三里程碑: 启动sersync

3.1 修改文件的权限(可执行)

首先让程序让文件有执行权限

  1. [root@nfs01 bin]# chmod a+x sersync
  2. [root@nfs01 bin]# ll
  3. total 1768
  4. -rwxr-xr-x 1 root root 1810128 Oct 26 2011 sersync

3.2 查看软件的帮助信息

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

3.3 在程序的bin目录下启动程序

  1. ./sersync -dro /usr/local/sersync/conf/confxml.xml

3.4 启动方法二

将/usr/local/sersync/bin/程序的bin目录添加到PATH中

  1. export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/sersync/bin/

然后sersync命令就能直接使用

  1. [root@nfs01 scripts]# sersync -dro /usr/local/sersync/conf/confxml.xml
  2. set the system param
  3. executeecho 50000000 > /proc/sys/fs/inotify/max_user_watches
  4. executeecho 327679 > /proc/sys/fs/inotify/max_queued_events
  5. parse the command param
  6. option: -d run as a daemon
  7. option: -r rsync all the local files to the remote servers before the sersync work
  8. option: -o config xml name /usr/local/sersync/conf/confxml.xml
  9. daemon thread num: 10
  10. parse xml config file
  11. host ip : localhost host port: 8008
  12. daemon startsersync run behind the console
  13. use rsync password-file :
  14. user is rsync_backup
  15. passwordfile is /etc/rsync.password
  16. config xml parse success
  17. please set /etc/rsyncd.conf max connections=0 Manually
  18. sersync working thread 12 = 1(primary thread) + 1(fail retry thread) + 10(daemon sub threads)
  19. Max threads numbers is: 22 = 12(Thread pool nums) + 10(Sub threads)
  20. please according your cpu use -n param to adjust the cpu rate
  21. ------------------------------------------
  22. rsync the directory recursivly to the remote servers once
  23. working please wait...
  24. execute command: cd /data && rsync -az -R --delete ./ rsync_backup@172.16.1.41::nfsbackup --password-file=/etc/rsync.password >/dev/null 2>&1
  25. run the sersync:
  26. watch path is: /data

4、Inotify与 sersync总结对比

4.1 Inotify实时并发:

  结论:经过测试,每秒200文件并发,数据同步几乎无延迟(小于1秒)

4.2 inotify 优点:

  1)监控文件系统事件变化,通过同步工具实现实时数据同步。

4.3 inotify 缺点

  1)并发如果大于200个文件(10-100k),同步就会有延迟
  2)我们前面写的脚本,每次都是全部推送一次,但确实是增量的。也可以只同步变化的文件,不变化的不理。
  3)监控到事件后,调用rsync同步是单进程的,而sersync为多进程同步。既然有了inotify-tools,为什么还要开发sersync?

4.4 serysync功能多:(inotify+rsync命令)

  1)支持通过配置文件管理
  2)真正的守护进程socket
  3)可以对失败文件定时重传(定时任务功能)
  4)第三方的HTTP接口(例如:更新cdn缓存)
  5)默认多进程rsync同步

4.5 高并发数据实时同步方案小结:

  1)inotify(sersync)+ rsync,是文件级别的。
  2)drbd文件系统级别,文件系统级别,基于block块同步,缺点:备节点数据不可用
  3)第三方软件的同步功能:mysql同步(主从复制),oracle,mongodb
  4)程序双写,直接写两台服务器。
  5)利用产品业务逻辑解决(读写分离,备份读不到,读主)
sersync实现数据实时同步 - 图1

5、man命令的级别

centos6

  1. [root@nfs01 ~]# man man
  2. The standard sections of the manual include:
  3. 1 User Commands #用户命令
  4. 2 System Calls #系统调用
  5. 3 C Library Functions # Ç库函数
  6. 4 Devices and Special Files #设备和特殊文件
  7. 5 File Formats and Conventions #文件格式和约定
  8. 6 Games et. Al. #游戏等。
  9. 7 Miscellanea #杂记
  10. 8 System Administration tools and Daemons #系统管理工具和程序
  11. Distributions customize the manual section to their specifics,
  12. which often include additional sections.

centos7

  1. [root@clsn tuichu]# man ~
  2. Executable programs or shell commands
  3. System calls (functions provided by the kernel)
  4. Library calls (functions within program libraries)
  5. Special files (usually found in /dev)
  6. File formats and conventions eg /etc/passwd
  7. Games
  8. Miscellaneous (including macro packages and conventions), e.g.
  9. man(7), groff(7)
  10. System administration commands (usually only for root)
  11. Kernel routines [Non standard]