amuck-landowner

How do you usually sync files across servers?

johnlth93

New Member

tchen

New Member
Depends on what you need it for but I found csync2 to work well with a small number of files that don't change too often. Example cluster configs. You can implement star topologies for n nodes.
 
Last edited by a moderator:

MannDude

Just a dude
vpsBoard Founder
Moderator
rsync -auvz -e "ssh -p PORTNUMBER -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /root/.ssh/id_rsa" /loca/dir/to/move user@remotemachine:/dir/where/files/go/remotely/$date/

RSync, but I've not really checked out any other option. Should I?
 

dannix

New Member
rsync -auvz -e "ssh -p PORTNUMBER -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i /root/.ssh/id_rsa" /loca/dir/to/move user@remotemachine:/dir/where/files/go/remotely/$date/

RSync, but I've not really checked out any other option. Should I?
Instead of this you should consider rsnapshot. Especially if the directory you're syncing consumes a lot of space.
 
Top
amuck-landowner