共计 3400 个字符,预计需要花费 9 分钟才能阅读完成。
Lsyncd 监视本地目录树事件监视器接口 (inotify 或 fsevents)。它聚合并将事件组合在一起几秒钟,然后生成一个(或多个) 进程来同步这些更改。默认情况下,由 rsync 实现同步。因此,Lsyncd 是一种轻量级的实时镜像解决方案,相对容易安装,不需要新的文件系统或块设备,也不会妨碍本地文件系统的性能。
Rsync+ssh 是一种高级操作配置,它使用 ssh 来执行文件和目录直接在目标上移动,而不是在线路上重新传输移动目标。细粒度的定制可以通过配置文件实现。自定义动作 configs 甚至可以从头编写,从 shell 脚本到 Lua 语言编写的代码。这种方法简单,强大,灵活的配置可以被解决。
Lsyncd 2.2.2 要求在所有源和目标机器上 rsync >= 3.1。
系统环境:
RenwoleServer:10.28.204.65 服务端
RenwoleClient:10.28.204.66 客户端
OS:CentOS Linux release 7.4.1708 (Core) x64
请参阅:《CentOS7 Configuring Rsync Server》。
$ yum install -y gcc gcc-c++ lua lua-devel cmake libxml2 libxml2-devel
$ wget https://github.com/axkibe/lsyncd/archive/release-2.2.2.tar.gz
$ tar xvf release-2.2.2.tar.gz
$ cd lsyncd-release-2.2.2
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/lsyncd
$ make && make install
$ ln -s /usr/local/lsyncd/bin/lsyncd /usr/bin/lsyncd
安装过程可能报错:-- Configuring incomplete, errors occurred!
安装 lua-devel 即可。
因为这里使用 rsyncssh 进行同步,所以还需要配置 root 账号无密码 ssh 登录。详细配置请参阅:
《如何在 Linux 中设置 SSH 无密码登录》
以下是三种常用配置案例
1. 远程同步 rsyncssh 模式配置方案:
$ vim /etc/lsyncd.conf
settings {
logfile = "/var/log/lsyncd.log", -- 日志路径
statusFile = "/var/log/lsyncd.status", -- 状态文件
pidfile = "/var/run/lsyncd.pid", --pid 文件路径
statusInterval = 1, -- 状态文件写入最短时间
nodaemon = false, --daemon 运行
maxProcesses = 1, -- 最大进程
maxDelays = 1, -- 最大延迟
}
sync {
default.rsyncssh, -- 默认 rsync+ssh,rsync 版本需要升级 3 以上版本
source = "/apps/www/renwoleblog/", -- 源目录
delete = true, -- 保持完全同步
host = "root@10.28.204.66",
targetdir = "/apps/www/renwoleblog/bak/", -- 目标目录
exclude={".txt" -- 需排除的文件},
rsync = {
binary = "/usr/bin/rsync", -- 需先安装好 rsync
archive = true, -- 归档
compress = false, -- 压缩
owner = true, -- 属主
perms = true, -- 权限
whole_file = false
},
ssh = {port = 22}
}
2. 本地目录同步配置方案:
sync {
default.rsync,
source = "/apps/www/renwoleblog/",
target = "/apps/www/renwoleblog/bak/",
}
3. 远程同步 rsync-daemon 模式配置方案
sync {
default.rsync,
source = "/apps/www/renwoleblog/",
target = "renwole@10.28.204.65::renwolecom",
delete="true",
exclude = {".bak*"},
delay = 30,
init = false,
rsync = {
binary = "/usr/bin/rsync",
archive = true,
compress = true,
verbose = true,
perms = true,
password_file = "/etc/rsync.password",
_extra = {"--bwlimit=200"}
}
}
重点参数说明:
-- # 注释符
settings # 是全局配置
sync # 定义同步参数
rsync # 定义同步文件参数
ssh # 定义服务器远程端口
lsyncd 配置文件允许多个 sync 互不影响。
说明:如果是一对多,请参阅本地同步,修改目标目录即可。
为了实现 systemctl 进行管理,请创建配置文件以及脚本启动文件,命令如下:
$ vim /etc/sysconfig/lsyncd
添加如下内容:LSYNCD_OPTIONS="/etc/lsyncd.conf"
创建启动文件:$ vim /usr/lib/systemd/system/lsyncd.service
添加如下内容:[Unit]
Description=Live Syncing (Mirror) Daemon
After=network.target
[Service]
Type=simple
EnvironmentFile=-/etc/sysconfig/lsyncd
ExecStart=/usr/local/lsyncd/bin/lsyncd -nodaemon $LSYNCD_OPTIONS
[Install]
WantedBy=multi-user.target
$ systemctl start lsyncd
$ systemctl enable lsyncd
接下来你就可以往源服务器 /apps/www/renwoleblog/ 内上传任意文件,完成后立刻就会同步到客户端 10.28.204.66 /apps/www/renwoleblog/bak/ 目录内,也可以查看服务端的 lsyncd 日志文件分析是否同步成功。例如:[root@RenwoleServer ~] $ cat /var/log/lsyncd.log
...
Fri Dec 22 01:19:22 2017 Normal: Calling rsync with filter-list of new/modified files/dirs
/PCHunter_renwole.com.tar.gz
/
Fri Dec 22 01:19:24 2017 Normal: Finished (list): 0
Fri Dec 22 01:19:32 2017 Normal: Calling rsync with filter-list of new/modified files/dirs
/PCHunter_renwole.com.tar.gz
/
Fri Dec 22 01:19:34 2017 Normal: Finished (list): 0
Fri Dec 22 01:19:34 2017 Normal: Calling rsync with filter-list of new/modified files/dirs
/PCHunter_renwole.com.tar.gz
/
Fri Dec 22 01:19:36 2017 Normal: Finished (list): 0
日志内容显示 PCHunter_renwole.com.rar 文件成功同步。
另外 lsyncd 是基于 inotify + rsync 的开源同步软件,相对于其他同步软件更加安全可靠,占用资源更少,但配置略麻烦。
lsyncd 还支持当监控到某个指定事件时就执行什么样的命令,由于是通过时间延迟和累计事件命中次数来触发同步,在设计上要优于 inotify,另外他的同步速度完全取决于你的网络质量。