项目实战:rsync+sersync实现数据实时同步

一、组网介绍

本次实验使用两台主机:
qll251 角色:Rsync server + Sersync server
qll252 角色: Rsync client

本次实验采用CentOS7.7系统;同时禁用防火墙,关闭selinux

[root@qll251 ~]# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
[root@qll251 ~]# systemctl stop firewalld && systemctl disable firewalld
[root@qll251 ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
[root@qll251 ~]# reboot #重启使selinux配置生效
[root@qll251 ~]# getenforce
Disabled
###以上便是本次实验环境的准备工作

二、开始部署

  • 在备份源机器上部署sersync+rsync服务

1) 下载sersync的可执行文件

[root@qll251 ~]# wget https://sersync.googlecode.com/files/sersync2.5.4_64bit_binary_stable_final.tar.gz

qinlulu
2)解压sersync可执行文件

[root@qll251 ~]# tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz
GNU-Linux-x86/
GNU-Linux-x86/sersync2
GNU-Linux-x86/confxml.xml
[root@qll251 ~]# ls
GNU-Linux-x86  sersync2.5.4_64bit_binary_stable_final.tar.gz
[root@qll251 ~]# mv GNU-Linux-x86/ sersync2.5.4 #文件夹重命名
[root@qll251 ~]# ls
sersync2.5.4  sersync2.5.4_64bit_binary_stable_final.tar.gz
[root@qll251 ~]#

3)修改/root/sersync2.5.4/confxml.xml配置文件

[root@qll251 ~

你可能感兴趣的:(Linux系统服务,运维,devops,服务器,linux,rsync)