Linux之rsync数据同步服务

1.Rsync基本概述
Rsync是开源多功能同步工具,支持多种操作系统
Rsync支持本地复制(优于scp,cp)与远程同步
Rsync支持全量备份,增量备份
Rsync基于C/S架构,默认监听tcp873端口

2.Rsync优点
支持增量备份,第一次全量备份,第二次增量备份。边复制边比较边统计,传输效率高。
数据集中备份,客户端可以推送数据至服务端,也可以从服务端获取数据,与客户端为参照物。
保持文件属性,符号链接,硬链接,权限,时间等。
安全方式传输,Rsync本身不对数据加密,使用ssh作为传输端口。
指定排除文件,排除无需同步的文件或目录。
进程方式同步,rsync运行在C/S架构,通过进程方式传输文件或数据。

.缺点:
1.大量小文件同步会比较慢,需要比对时间较长,可能造成Rsync进程停止
解决思路:将小文件进行打包,然后再同步,减小比对时间,传输效率更高
2.同步大文件会出现中断情况,而且长时间同步会造成网络资源耗尽
解决思路:配置限速同步,未同步完之前修改为隐藏文件,同步完后修改为正常文件

Rsync命令格式:
rsync [选项] 源文件 [user@]host::目录
rsync [选项] 源文件 rsync:// [user@]host:[:port]/目录
-a选项
:递归传输目录
:保持文件或目录的时间、文件属性、属组、时间、软链接
:显示同步的过程
:设备
-z选项
:传输时进行压缩以提高效率
-v选项
:详细模式输出,打印速率,文件数量等
-e选项
:使用的信道协议,指定替代rsh的shell程序
--delete 让目标目录和源目录数据保持一致
--partial 断点续传
--bwllimit=100 限速传输
--exclude-from=file 文件名所在的目录
--exclude=PATTERN 指定排除不需要传输的文件模式

rsync服务部署
环境:
两台主机:源服务器:192.168.56.11
目标服务器:192.68.56.12
需求:
把源服务器上的/etc目录实时同步到目标服务器的/tmp/目录下

在目标服务器上做以下操作:

1.关闭防火墙和selinux
[root@linuxidc ~]# systemctl stop firewalld
[root@linuxidc ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.Fedoraproject.FirewallD1.service.
[root@linuxidc ~]# setenforce 0
[root@linuxidc ~]# sed -ri 's/^(SELINUX=).*/\1disabled/g' /etc/sysconfig/selinux

2.安装rsync服务端软件
[root@linuxidc ~]# yum install rsync -y

3.配置rsync.conf配置文件

[root@linuxidc ~]# cat >> /etc/rsyncd.conf <<EOF

log file = /var/log/rsyncd.log // 日志文件位置,启动rsync后自动产生
    pidfile = /var/run/rsyncd.pid //pid文件存放位置
    lock file = /var/run/rsync.lock //支持max connections参数的锁文件
    secrets file = /etc/rsync.pass //用户认证配置文件,里面保存用户名称和密码,必须手动创建这个文件
    [etc_from_client] //自定义同步名称
    path = /heyuanjie/ //rsync服务端数据存放路径
    ,客户端的数据将同步至此目录
    comment = gaosiao
    uid = root //设置rsync运行权限为root
    gid = root //设置rsync运行权限为root
    port = 873 //默认端口
    ignore errors //表示出现错误忽略错误
    use chroot = no // 默认为true,修改为no,增加对目录文件软连接的备份
    read only = no //设置rsync服务端为读写权限
    list = no //不显示rsync服务端资源列表
    max connection= 200 //最大连接数
    timeout = 600 //设置超时时间
    auth users = admin //执行数据同步的用户名,可设置多个,用英文状态下逗号隔开
    hosts allow = 192.168.56.11 //允许进行数据同步的客户端ip,可设置多个,逗号隔开
    hosts deny = 192.168.1.1 //禁止数据同步的客户端IP地址
    EOF

4.创建用户认证文件,并设置文件权限

[root@linuxidc ~]# echo 'admin:123456' > /etc/rsync.pass
[root@linuxidc ~]# cat /etc/rsync.pass
admin:123456
[root@linuxidc ~]# chmod 600 /etc/rsync
[root@linuxidc ~]# ll /etc/rsync
-rw-------. 1 root root 825 Aug 16 15:42 /etc/rsyncd.conf
-rw-------. 1 root root 13 Aug 16 15:55 /etc/rsync.pass

5.启动rsync服务并加入开机自启

[root@linuxidc ~]# systemctl start rsyncd
[root@linuxidc ~]# systemctl enable rsyncd
Created symlink from /etc/systemd/system/multi
user.target.wants/rsyncd.service to /usr/lib/systemd/system/rsyncd.service.
[root@linuxidc ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 :22 :
LISTEN 0 100 127.0.0.1:25 :
LISTEN 0 5 :873 :
LISTEN 0 128 :::22 :::
LISTEN 0 100 ::1:25 :::
LISTEN 0 5 :::873 :::*

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/bf74b330f0b812af3c05687e9c9253fe.html