CentOS 7.2 Ubuntu 18部署Rsync + Lsyncd服务实现文件实时同步/备份

Posted shione

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7.2 Ubuntu 18部署Rsync + Lsyncd服务实现文件实时同步/备份相关的知识,希望对你有一定的参考价值。

发送端配置:

一、配置密钥

1. 主/从服务器之间启用基于密钥的身份验证。登录发送端服务器并用 " ssh-keygen " 命令生成公共或私有的密钥。

技术图片

2. 使用 " ssh-copy-id " 复制密钥文件到接收端服务器。

ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected]
把生成的公钥发送到对方的主机上去,用ssh-copy-id命令,自动保存在对方主机的/root/.ssh/authorized_keys文件中去
[[email protected] ~ 09:16:45&&26]# ssh 192.168.1.160 #需要登录密码 
[[email protected] ~ 09:16:45&&26]# ssh-copy-id -i /root/.ssh/id_rsa.pub [email protected] 
[[email protected] ~ 09:16:45&&26]# ssh 192.168.1.160 #免密登录 

 

输入登录密码

若提示“Permissions 0644 for ‘/root/.ssh/id_rsa’ are too open”,并且断开连接。

仔细阅读了一下ssh文档和这句提示,大概的意思时ssh的私有密钥的权限开放尺度太大了,可以供人随意欣赏了,ssh自身的策略关闭了ssh。

解决方案:将权限由0644降低为0600

chmod 0600 ~/.ssh/id_rsa

二、安装rsync + lsyncd

centos7:  yum -y install lsyncd   
ubuntu18: apt install lsyncd

看具体情况 安装lsyncd依赖包
centos的配置文件是/etc/lsyncd.conf

ubuntu的配置文件是/etc/lsyncd/lsyncd.conf.lua

且ubuntu要手动创建/etc/lsyncd文件夹、log文件、status文件,centos不用 其他都一样

三、配置lsyncd

      1.如果有example案例文件复制成配置文件

cp /usr/share/doc/lsyncd-2.1.5/examples/lrsync.lua /etc/lsyncd.conf

  2. 编辑lsyncd配置文件

centos 7   
位置:/etc/lsyncd.conf
---- -- User configuration file for lsyncd. -- -- Simple example for default rsync, but executing moves through on the target. -- -- For more examples, see /usr/share/doc/lsyncd*/examples/ -- -- 分发服务器 settings { logfile ="/var/log/lsyncd/lsyncd.log", ---->需要配置或创建具体的文件目录或者文件 statusFile = "/var/log/lsyncd/lsyncd.stat", statusInterval = 1,
maxProcesses = 10, ---->这里变成10会报错 只能1个进程
nodaemon = false,
maxDelays = 7
} sync{ default.rsyncssh, source="/www/wwwroot/www.xxx.com", host="192.168.0.1", init = false, --->一般为false 服务启动的时候不会报错 targetdir="/www/wwwroot/test.com", delete = true, delay = 0, rsync = { binary = "/usr/bin/rsync", archive = true, --归档 compress = true, --压缩 verbose = true, owner = true, --属主 perms = true, --权限 _extra = {"--bwlimit=2000"}, }, ssh = { port = 22 } } sync{ default.rsyncssh, source="/www/wwwroot/www.xxx.com", host="192.168.0.2", init = false, targetdir="/www/wwwroot/test.com", delete = true, delay = 0, rsync = { binary = "/usr/bin/rsync", archive = true, --归档 compress = true, --压缩 verbose = true, owner = true, --属主 perms = true, --权限 _extra = {"--bwlimit=2000"}, }, ssh = { port = 22 } }

双向同步

ubuntu 18
文件位置: /etc/lsyncd/lsyncd.conf.lua
settings { logfile = "/var/log/lsyncd/lsyncd.log", statusFile = "/var/log/lsyncd/lsyncd.status" } sync { default.rsyncssh, source = "/www/wwwroot/test.com", host = "47.244.107.27", targetdir = "/www/wwwroot/www.XXX.com", init = false, delay=0, rsync = { binary = "/usr/bin/rsync", archive = true, compress = true, --压缩传输默认为true。在带宽与cpu负载之间权衡,本地目录同步可以考虑把它设为false verbose = true }, ssh = { port = 22 } }

四、启动服务,并设置开机启动

1. 启动lsyncd服务

-----centos7
lsyncd /etc/lsyncd.conf   ---->检查配置信息是否正确
systemctl start lsyncd
systemctl status lsyncd
systemctl restart lsyncd
-----ubuntu18
/etc/init.d/lsyncd restart
/etc/init.d/lsyncd start
/etc/init.d/lsyncd status ----------------------------

2. 启动完成查看lsyncd状态,确保lsync启动成功

技术图片

3. 设置开机启动

systemctl enable lsyncd

以上是关于CentOS 7.2 Ubuntu 18部署Rsync + Lsyncd服务实现文件实时同步/备份的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7.2 部署Saltstack

在 Ubuntu 18.04 中对 PHP 7.2 启用 GD 支持

部署 LAMP (CentOS 7.2)

CentOS 7.2 中 Kafka,Zookeeper的单机部署,伪分布式部署以及真正的分布式部署

CentOS 7.2 安装部署 Ceph 及添加 PG

CentOS 7.2 部署Rsync + Lsyncd服务实现文件实时同步/备份