0

Morning,

Got 3 machines that have user content on them, which I need to keep in sync. This is a 3 way sync.

Currently I run rsync but we just don't handle deletes. Have looked at something like gluster, but that seems a little over the top

Any other software out there to do a 3 way sync, or a good network file system...? There is for web servers so we don't want a slow / IO hungry process.

3 servers... user content could be added to 1 and needs to be moved to other two.

Wizzard
  • 342
  • 1
  • 4
  • 12

4 Answers4

1

How about DropBox? I'm not sure if that's exactly what you're looking for.

Jack Lawrence
  • 391
  • 3
  • 9
0

Use NFS if the machines are on the same network.

Otherwise, use version control software like Git or better yet, Subversion. You'll have to make some scripts to push the changes around. A plus, version control!

Allen
  • 1,315
  • 7
  • 12
0

If you really think that a distributed filesystem (which is in fact what you need and there are some lighter ones that you could use, such as XtreemFS) is an overkill for you, then try something like Aspera.

Florin Asăvoaie
  • 7,057
  • 23
  • 35
0

GlusterFS is not that hard to set up. If you're using configuration management on those servers (you ARE using CM tools, right?), it should be trivial to set up the servers, set up the volume, install the clients and mount it on every box.

Joel E Salas
  • 5,572
  • 16
  • 25