目录
一,remote sync,远程同步
是一个开源的快速备份工具,可以在不同主机之间镜像同步整个目录树,支持增量备份,并保持链接和权限,且采用优化的同步算法,传输前执行压缩,因此非常适用于异地备份、镜像服务器等应用。
在远程同步任务中,负责发起rsync同步操作的客户机称为发起端,而负责响应来自客户机的rsync同步操作的服务器称为同步源。在同步过程中,同步源负责提供文件的原始位置,发起端应对该位置具有读取权限。
配置rsync远程同步
环境准备:
rsync同步源:192.168.18.91
rsync客户机:192.168.18.109
关闭防火墙和selinux(两台都需要此操作)
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0
源服务器配置:
[root@localhost ~]# rpm -q rsync ##查看是否安装软件
rsync-3.0.9-18.el7.x86_64
[root@localhost ~]# vim /etc/rsyncd.conf ##配置配置文件
uid = nobody
gid = nobody
use chroot = yes
pid file = /var/run/rsyncd.pid
dont compress = *.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2
address = 192.168.18.91
port = 873
log file = /var/log/rsycd.log
hosts allow = 192.168.18.0/24
[ftp]
path = /var/www/html
comment = web service
read only = yes
auth users = backuper
secrets file = /etc/rsyncd_users.db
各字段含义:
uid = nobody
gid = nobody
use chroot = yes #禁锢在源目录
address = 192.168.18.91 #监听地址
port 873 #监听端口号 tcp/udp 873
log file = /var/log/rsyncd.log #日志地址
pid file = /var/run/rsyncd.pid #存放进程ID的文件位置
hosts allow = 192.168.18.0/24 #允许访问的客户机地址[ftp] #共享模块名称
path = /home/ftp #原目录实际路径
comment = ftp export area #备注
read only = yes #是否只读
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型
auth users = backuper #授权账户,多个账号以空格分隔
secrets file = /etc/rsyncd_users.db #存放账户信息的数据文件如果采用匿名的方式,只要将其中的“auth users” 和“secrets file” 配置项去掉即可
为备份账户创建数据文件
[root@localhost ~]# vim /etc/rsyncd_users.db
backuper:123123
##账户:密码 格式用分号隔开
[root@localhost ~]# chmod 600 /etc/rsyncd_users.db ##权限一定要600
给需同步的的目录权限。并开启服务
[root@localhost ~]# chmod -R 777 /var/www/html/
[root@localhost ~]# rsync --daemon
[root@localhost ~]# ss -natp|grep rsync
tcp 0 0 192.168.18.91:873 0.0.0.0:*
LISTEN 24382/rsync
服务端