CentOS 7
Sponsored Link

Lsync + Rsync : Sync Files timely2015/01/12

 
Install Lsyncd that is a flexible cross-platform synchronization tool.
[1]
[2] In addition to settings of [1], Install and configure Lsyncd to sync files or directories timely.
# install from EPEL

[root@dlp ~]#
yum --enablerepo=epel -y install lsyncd
[root@dlp ~]#
vi /etc/lsyncd.conf
# line 8: comment out

--
sync{default.rsyncssh, source="/var/www/html", host="localhost", targetdir="// tmp/htmlcopy/"}
# add follows to the end

settings{
    statusFile = "/tmp/lsyncd.stat",
    statusInterval = 1,
}
sync{
    default.rsync,
   
# source directory

    source="/root/work/",
   
# destination Hostname or IP address:(the name set in rsyncd.conf)

    target="10.0.0.31::backup",
   
# excluding list

    excludeFrom="/etc/rsync_exclude.lst",
}
[root@dlp ~]#
systemctl start lsyncd

[root@dlp ~]#
systemctl enable lsyncd

[3]
Make sure files and directories are copied timely on destination Host.

Matched Content