linux应用之文件实时同步(sersync)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-21
在网上看到了很多关于用rsync实时同步文件的文章,可是有些文章写的不是很详细,所有菜鸟就写了一篇文章,我使用是sersync这个开源的软件,是由金山才子周洋所写,非常感谢他的贡献.具体项目详情请访问:http://code.google.com/p/sersync/ qq群:37499077 欢迎讨论
linux下文件实时同步
一、Rsync Remote端的配置
1、需要确定你的系统版本是否是2.6(支持inotify) [root@hxqm tongbu]# uname -a Linux hxqm 2.6.18-128.el5 #1 SMP Wed Jan 21 10:44:23 EST 2009 i686 i686 i386 GNU/Linux 2、查看是否装了rsync包 [root@hxqm tongbu]# rpm -q rsync rsync-2.6.8-3.1 如果没有安装就用rpm 或yum装上. 3、新建配置文件/etc/rsyncd.conf,然后编辑/etc/rsyncd.conf,添加一下内容到文件里: motd file = /etc/rsyncd.motd uid=root gid=root max connections=36000 use chroot=no log file=/var/log/rsyncd.log log format = %t %a %m %f %b pid file=/var/run/rsyncd.pid lock file=/var/run/rsyncd.lock timeout = 300 [tongbu] path=/opt/tongbu list=yes comment = xiao song tongbu wen jian ignore errors = yes read only = no hosts allow = 192.168.81.0/24 hosts deny = * auth users test secrets file = /etc/rsyncd.secrets 具体参数请google一下,这里就不多讲解了. 说明几点:在server配置了一个名为"[tongbu]"的模块,需要同步的目录为/opt/tongbu 访问用的用户名为test 密码存放文件为rsyncd.secrets,值得注意的地方是修改文件的属性为"600",chmod 600 /etc/rsyncd.secrets 4、新建/etc/rsyncd.secrets,文件里的内容格式是: test:test 注意:第一个字段是用户名,第二个字段是密码,他们之间用":"分开. 5、开启rsync daemon格式 rsync --daemon --config=/etc/rsyncd.conf 6、把rsync启动加到启动项里 拥有帝国一切,皆有可能。欢迎访问phome.net echo "rsync --daemon --config=/etc/rsyncd.conf" >> /etc/rc.local 二、Rsync client端配置: 1、需要下载sersync最新版本2.5 [root@localhost ~]# wget http://sersync.googlecode.com/files/sersync2.5beta1_32bit_binary.tar.gz 2、解压并编辑confxml.conf文件,confxml.conf是sersync的配置文件,用于指定需要同步的目录及是否刷新cdn接口等,(我只是测试cdn这个没有用到,这个你要是用在生产环境中,可以根据自己的需要来定) [root@hxqm-tomcat sersysnc2]# cat confxml.xml <?xml version="1.0" encoding="ISO-8859-1"?> <head version="2.2"> <host hostip="localhost" port="8008"></host> <filter start="false"> <exclude expression="(.*).gz"></exclude> <exclude expression="^info/*"></exclude> </filter> <sersync> <localpath watch="/opt/tongbu" debug="false"> <remote ip="192.168.81.128" name="tongbu"/> <!--<remote ip="192.168.8.39" name="tongbu"/>--> </localpath> <rsyncauth start="flase" users="test" passwordfile="/etc/rsync.password"/> <crontab start="false" schedule="600"> <crontabfilter start="false"> <exclude expression="*.php"></exclude> <exclude expression="info/*"></exclude> </crontabfilter> </crontab> <plugin start="false" name="refreshCDN"/> </sersync> <plugin nam |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: linux下批量替换文件内容下一篇: 百家讲坛之linux系统管理-安装
关于linux应用之文件实时同步(sersync)的所有评论