rsync配置
目标服务器:
- 安装rsync
yum install rsync -y
- 开启防火墙873
firewall-cmd --permanent --add-port=873/tcp
- 修改配置
/etc/rsyncd.conf
#日志文件位置
log file = /var/log/rsyncd.log
#pid文件的存放位置
pid file = /var/run/rsyncd.pid
#支持max connections参数的锁文件
lock file = /var/run/rsync.lock
#用户认证配置文件,里面保存用户名称和密码
secrets file = /etc/rsync.password
#rsync启动时欢迎信息页面文件位置(文件内容自定义)
motd file = /etc/rsyncd.Motd
#默认端口
port=873
#默认为true,修改为no,增加对目录文件软连接的备份
use chroot = no
#最大连接数
max connections = 200
#设置超时时间
timeout = 600
#执行数据同步的用户名,可以设置多个,用英文逗号隔开
auth users = rsync_bak
#允许进行数据同步的客户端IP地址,可以设置多个,用英文逗号隔开
# hosts allow = 192.168.70.83
#禁止数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
#hosts deny = 192.168.21.254
#设置rsync运行权限为root
uid = root
#设置rsync运行权限为root
gid = root
#设置rsync服务端文件为读写权限
read only = false
#不显示rsync服务端资源列表
list = false
[docker]
#rsync服务端数据目录路径
path = /data/docker/
#模块名称
comment = docker log files
可以添加多个模块同步多个目录
注意:需要创建同步目录,否则rsync服务会因为没有PATH路径而无法启动。
- 相关认证和权限项配置
echo 'rsync_bak:redhat' > /etc/rsync.password
chmod 600 /etc/rsync.password
- 以守护进程方式启动rsync服务
rsync --daemon
#查看rsync服务状态
lsof -i tcp:873
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
rsync 20982 root 3u IPv4 88170 0t0 TCP *:rsync (LISTEN)
rsync 20982 root 5u IPv6 88171 0t0 TCP *:rsync (LISTEN)
- 为rsync添加开机自启动
echo "# rsyncd service daemon by sun 20140702" >>/etc/rc.local
echo "/usr/bin/rsync --daemon" >> /etc/rc.local
重启:
pkill rsync
rsync --daemon
源服务器:
- 安装Rsync并配置相关权限认证
yum install rsync -y
echo "redhat" > /etc/rsync.password
chmod 600 /etc/rsync.password
- 在源服务器上手动测试rsync的同步情况
rsync -avH --port=873 --progress --delete /data/dpcler/ rsync_bak@172.16.100.1::docker --password-file=/etc/rsync.password
报错可查询目标服务器的/var/log/rsyncd.log
安装和配置sersync
- 安装sersync
wget https://sersync.googlecode.com/files/sersync2.5.4_64bit_binary_stable_final.tar.gz
tar zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz
cp -r GNU-Linux-x86 /usr/local/sersync
- 规范 Sersync 目录结构
cd /usr/local/sersync
mkdir conf bin logs
mv confxml.xml conf
mv sersync2 bin/sersync
tree
.
├── bin
│ └── sersync
├── conf
│ └── confxml.xml
└── logs
3 directories, 2 files
- 配置 Sersync
cp conf/confxml.xml conf/confxml.xml.bak.$(date +%F)
<?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="false">
<exclude expression="(.*)\.svn"></exclude>
<exclude expression="(.*)\.gz"></exclude>
<exclude expression="^info/*"></exclude>
<exclude expression="^static/*"></exclude>
</filter>
<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="/data/docker">
<remote ip="192.168.90.10" name="docker"/>
<!--<remote ip="192.168.8.39" name="tongbu"/>-->
<!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
<commonParams params="-artz --delete"/>
<auth start="true" users="rsync_bak" passwordfile="/etc/rsync.password"/>
<userDefinedPort start="false" port="874"/><!-- port=874 -->
<timeout start="false" time="100"/><!-- timeout=100 -->
<ssh start="false"/>
</rsync>
<failLog path="/usr/local/sersync/logs/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->
<crontab start="true" 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>
当同步失败后,日志记录到/usr/local/sersync/logs/rsync_fail_log.sh,并且每60分钟对失败的log进行重新同步。
Sersync的多实例和往常的apache,nginx一样,你只需要把配置文件拷贝一份出来,然后针对不同的实例做不同的修改,然后在最后开启 sersync 服务的时候指定不同的配置文件做启动即可!
- 开启 Sersync 守护进程进行数据同步
配置环境变量
echo 'export PATH=$PATH:/usr/local/sersync/bin'>>/etc/profile
. /etc/profile
启动
sersync -r -d -o /usr/local/sersync/conf/confxml.xml
- 配置开机启动
cat >>/etc/rc.local<< 'EOF'
> # sync data to 172.16.100.1,172.16.100.2
> sersync -r -d -o /usr/local/sersync/conf/confxml.xml
> sersync -r -d -o /usr/local/sersync/conf/download_confxml.xml
> EOF
- 添加脚本监控sersync是否正常运行
vi /home/crontab/check_sersync.sh
#编辑,添加以下代码
#!/bin/sh
sersync="/usr/local/sersync/bin/sersync"
confxml="/usr/local/sersync/conf/confxml.xml"
status=$(ps aux |grep 'sersync'|grep -v 'grep'|wc -l)
if [ $status -eq 0 ];
then
$sersync -d -r -o $confxml &
else
exit 0;
fi
chmod +x /home/crontab/check_sersync.sh #添加脚本执行权限
vi /etc/crontab #编辑,在最后添加下面一行
*/5 * * * * root /home/crontab/check_sersync.sh > /dev/null 2>&1 #每隔5分钟执行一次脚本
service crond reload #重新加载服务