Centos 6.3 x86_64 配置rsync+inotify

简介:
Centos 6.3 x86_64 配置rsync+inotify
一,inotify简介
Inotiy是一种强大的,细粒度的,异步的文件系统事件监控机制,linux内核从2.6.13版本起,加入了对inotify的支持。通过对inotify可以监控文件系统中添加、删除、修改、移动等各种细微事件,利用这个内核接口,第三方软件可以监控文件系统下文件的各种变化情况。
目前有inotify-tools,google开源项目Openduckbill,还有一个sersync由金山周洋开发并开源的。在监控事件变化的效率比inotify-tools高,至于高多少,可以参数这个网址http://blog.johntechinfo.com/sersyncguild。
二,实验效果图

Server是一个内容发布系统,后端采用负载均衡集群部署方案,由一个负载调试节点,多台服务节点组成。内容发布系节点负责将用户发布的数据生成静态页面,同时将静态网页传输给3个服务节点,负载调试器将用户请求根据负载算法调度到到相应的web节点上,实现用户访问。
三,配置serync,rsync配置参考http://bingodeng.blog.51cto.com/1038075/1180876
这里只做一些简单的修改,rsync使用系统自带的,如果没有可以使用yum安装。
1,先对web节点配置好rsync,web节点配置都一样
# vim /etc/rsyncd.conf 
uid=nobody
gid=nobody
use chroot=no
max connections=0
strict modes=yes
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsyncd.lock
log file=/var/log/rsyncd.log
[test]
path=/data
comment=ixdba file
ignore errors
read only=no
write only=no
hosts allow =192.168.1.0/24
hosts deny=*
list=false
uid=root
gid=root
auth users=backup
secrets file=/etc/server.pass
# vim /etc/server.pass 
backup:ixdba123
#chmod 600 /e tc/server.pass
这次使用xinetd来控制rsync服务
#yum -y install xinetd
#chkconfig rsync on
#chkconfig xinetd on
#/etc/init.d/xinetd start
#netstat -tunlp |grep 873
tcp        0      0 :::873                      :::*        LISTEN     25340/xinetd 
2,配置sersync,配置比较简单,一个xml格式的配置文件和一个可执行文件。
# vim /etc/server.pass 
ixdba123
#chmod 600 /etc/server.pass
#tar xf sersync2.5.4.tar.gz -C /usr/local
#cd /usr/localGNU-Linux-x86
#vim config.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<head version="2.5">
    <host hostip="localhost" port="8008"></host>
    <debug start="false"/>
    <fileSystem xfs="false"/>
    <filter start="true">  #默认过虑是关闭的,如果想开启改为true
<exclude expression="(.*)\.svn"></exclude>
<exclude expression="(.*)\.gz"></exclude>
<exclude expression="^info/*"></exclude>
<exclude expression="^static/*"></exclude>
    </filter>
    <inotify>    #inotify监控哪些事件
<delete start="true"/>
<createFolder start="true"/>
<createFile start="false"/>
<closeWrite start="true"/>
<moveFrom start="true"/>
<moveTo start="true"/>
<attrib start="false"/>
<modify start="false"/>
    </inotify>
    <sersync>
<localpath watch="/var/www">   #对本机哪个目录监控
    <remote ip="192.168.1.28" name="test"/>   #将/var/www目录的文件同步到rsync 模块test中,可以定义多个
    <!--<remote ip="192.168.8.39" name="tongbu"/>-->
    <!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
    <commonParams params="-artuz"/>   #rsync命令同步的参数
    <auth start="true" users="backup" passwordfile="/etc/server.pass"/>  #同步的用户与密码文件
    <userDefinedPort start="false" port="874"/><!-- port=874 -->
    <timeout start="false" time="100"/><!-- timeout=100 -->
    <ssh start="false"/>
</rsync>
#错误日志记录在/tmp下
<failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->
<crontab start="false" schedule="600"><!--600mins-->
    <crontabfilter start="false">
<exclude expression="*.php"></exclude>
<exclude expression="info/*"></exclude>
    </crontabfilter>
</crontab>
<plugin start="false" name="command"/>
    </sersync>
    <plugin name="command">
<param prefix="/bin/sh" suffix="" ignoreError="true"/> <!--prefix /opt/tongbu/mmm.sh suffix-->
<filter start="false">
    <include expression="(.*)\.php"/>
    <include expression="(.*)\.sh"/>
</filter>
    </plugin>
    <plugin name="socket">
<localpath watch="/opt/tongbu">
    <deshost ip="192.168.138.20" port="8009"/>
</localpath>
    </plugin>
    <plugin name="refreshCDN">
<localpath watch="/data0/htdocs/cms.xoyo.com/site/">
    <cdninfo domainname="ccms.chinacache.com" port="80" username="xxxx" passwd="xxxx"/>
    <sendurl base="http://pic.xoyo.com/cms"/>
    <regexurl regex="false" match="cms.xoyo.com/site([/a-zA-Z0-9]*).xoyo.com/images"/>
</localpath>
    </plugin>
</head>
3,测试rsync配置有没有问题
# rsync -avl /etc/fstab  backup@192.168.1.28::test --password-file=/etc/server.pass
4,启动sersync
./sersync2 -d 
5,写入/etc/rc.local文件
echo "/usr/local/GNU_linux/sersync2 -d &">>/etc/rc.local
6,测试
在/var/www/目录下建立文件和文件夹,观察是否同步到web节点的/data目录下
四,Serync2命令使用
1,查看帮助
./sersync2 -help 
2,指定别的配置文件
./sersync2 -o xxx.xml
3,指定默认的线程池的线程总数
./sersync -n num
./sersync -n 5 则指定线程总数为5,如果不指定,默认启动线程池数量是10,如果cpu使用过高,可以通过这个参数调低,如果机器配置较高,可以用-n跳高线程总数。
4,不进行同步,只运行插件
./sersync2-m pluginName
例如./sersync2 -m command,则在监控到文件事件后,不对远程目标服务器进行同步,而是直接运行command插件。
5,多个参数可以配合使用
./sersync -n 8 -o abc.xml -r -d   
表示,设置线程池工作线程为8个,指定abc.xml作为配置文件,在实时监控前作一次整体同步,以守护进程方式在后台运行。 如果配置文件开启过滤的话,-r将不能使用。
6,通常情况下,对本地到远程整体同步一遍后,在后台运行实时同步。
./sersync -d









本文转自 deng304749970 51CTO博客,原文链接:http://blog.51cto.com/damondeng/1181523,如需转载请自行联系原作者
目录
相关文章
|
6月前
|
应用服务中间件 Linux 网络安全
Centos 8.0中Nginx配置文件和https正书添加配置
这是一份Nginx配置文件,包含HTTP与HTTPS服务设置。主要功能如下:1) 将HTTP(80端口)请求重定向至HTTPS(443端口),增强安全性;2) 配置SSL证书,支持TLSv1.1至TLSv1.3协议;3) 使用uWSGI与后端应用通信(如Django);4) 静态文件托管路径设为`/root/code/static/`;5) 定制错误页面(404、50x)。适用于Web应用部署场景。
722 87
|
4月前
|
存储 Linux Apache
在CentOS上配置SVN至Web目录的自动同步
通过上述配置,每次当SVN仓库中提交新的更改时,`post-commit`钩子将被触发,SVN仓库的内容会自动同步到指定的Web目录,从而实现代码的连续部署。
186 16
|
4月前
|
NoSQL 安全 Linux
设置Redis在CentOS7上的自启动配置
这些步骤总结了在CentOS 7系统上设置Redis服务自启动的过程。这些命令提供了一个直接且明了的方式,确保Redis作为关键组件在系统启动时能自动运行,保障了依赖于Redis服务的应用的稳定性和可用性。
467 9
|
6月前
|
Linux
Centos6配置阿里云yum源报错
在CentOS 6配置阿里云Yum源时,可能出现EPEL仓库访问报错(404 Not Found)。解决方法:编辑`/etc/yum.repos.d/epel.repo`文件,将`enabled`和`gpgcheck`参数设为0 ``` 此设置可解决仓库无法访问的问题。
1615 29
|
6月前
|
Ubuntu 安全 Linux
CentOS与Ubuntu中防火墙配置命令集汇
有了这些,你就能遨游在 CentOS 和 Ubuntu 的海洋中,频繁地改变你的防火墙设置,快速地应对各种安全威胁,同时也能保证你的系统可以正常工作。出发吧,勇敢的编程者,随着这些命令集的涌动,扬帆起航,走向安全的网络世界!
220 5
|
7月前
|
关系型数据库 MySQL Linux
CentOS 7系统下详细安装MySQL 5.7的步骤:包括密码配置、字符集配置、远程连接配置
以上就是在CentOS 7系统下安装MySQL 5.7的详细步骤。希望这个指南能帮助你顺利完成安装。
1820 26
|
7月前
|
安全 Linux 网络安全
在Linux(CentOS和AWS)上安装更新的git2的方法并配置github-ssh
经过以上这些步骤,你现在就能在GitHub上顺利往返,如同海洋中的航海者自由驰骋。欢迎你加入码农的世界,享受这编程的乐趣吧!
322 10
|
10月前
|
Java
CentOS7.8配置Adoptium-Java17运行环境
本指南介绍如何设置清华镜像源并安装 Temurin-17-JRE 运行环境。首先,编辑 `/etc/yum.repos.d/adoptium.repo` 文件,配置清华镜像源。接着,使用 `yum install -y temurin-17-jre` 命令安装 Temurin-17-JRE,并通过 `java --version` 验证安装成功。相关配置和操作界面截图附后。
346 8
|
10月前
|
网络协议 Java 应用服务中间件
centos7环境下tomcat8的安装与配置
本文介绍了在Linux环境下安装和配置Tomcat 8的详细步骤。首先,通过无网络条件下的文件交互软件(如Xftp 6或MobaXterm)下载并解压Tomcat安装包至指定路径,启动Tomcat服务并测试访问。接着,修改Tomcat端口号以避免冲突,并部署Java Web应用项目至Tomcat服务器。最后,调整Linux防火墙规则,确保外部可以正常访问部署的应用。关键步骤包括关闭或配置防火墙、添加必要的端口规则,确保Tomcat服务稳定运行。