本次实验使用两台主机:
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
2&#x