Skip to content

devatsrs/how-to-setup-lsyncd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 

Repository files navigation

#Readme

Here I will explain commands to setup and configure auto folder/directory sync across servers.

#Servers

172.16.1.172

172.17.1.172

172.18.1.172

Setting up following commands for server 172.18.1.172.

Username: user

#Installation

sudo yum -y install rsync lsyncd

#Permissions

ssh-keygen

sudo ssh-copy-id [email protected]

sudo ssh-copy-id [email protected]

sudo chmod -R 0777 /vol/data/tmp/

#Test

sudo ssh [email protected]

#Configuration

sudo vi /etc/lsyncd.conf

settings {

    logfile = "/var/log/lsyncd/lsyncd.log",
    statusFile = "/var/log/lsyncd/lsyncd.status",
    nodaemon   = false,
    statusInterval = 1,
    insist = true

}

sync {

    default.rsync,
    source = "/vol/data/tmp",
    target = "[email protected]:/vol/data/tmp",
    delete = false,
    delay = 1,
    rsync = { perms=true, chmod = "775", _extra = { "--omit-dir-times" }  }

}

sync {

    default.rsync,
    source = "/vol/data/tmp",
    target = "[email protected]:/vol/data/tmp",
    delete = false,
    delay = 1,
    rsync = { perms=true, chmod = "775", _extra = { "--omit-dir-times" }  }

}

#Restart

sudo systemctl restart lsyncd

#Testing

sudo rsync -avzh /vol/data/tmp/ [email protected]:/vol/data/tmp/

#Reference

https://axkibe.github.io/lsyncd/manual/config/layer4/

Releases

No releases published

Packages

No packages published