Rsync on 3 places

Alexandros Papadopoulos apapadop at alumni.cmu.edu
Wed Oct 10 18:41:54 GMT 2007


On 10/10/07, Michael Reynolds <neufurth_bernd at yahoo.com> wrote:
<snip>
> I have 3 places (A,B and C). Place A is "main" place.
> I want to use rsync to synchronize all data from place
> A to places B and C (only one-way from A to B and C).

Simply run two rsync commands.

One to rsync from A to B and one to rsync from A to C. The specific
method depends on the underlying OS and services available? Is
security an issue? Are there Windows machines involved?

You could run an rsync daemon on machine A and then run rsync scripts
that will "pull" data out of A.

So, on B you'd run: rsync -avz A::name_of_module .
and on C you'd run exactly the same: rsync -avz A:name_of_module .

HTH

-A


More information about the rsync mailing list