Ubuntu – Synchronize Files on Multiple Servers (rsync?)

apache-2.2rsyncsynchronizationUbuntu

I have a clustered Ubuntu server layout. Is there a way to configure filesystem synchronization only when a change is made/file is modified (to save resources)?

Best Answer

You could use rsync, but why not make /home an NFS share? rsync only sends changed files.

As a side note, only having a single load-balancer causes you to have a single point-of-failure (SPOF). You might want to get another one in there...

Related Topic