1

I'm looking for a way to copy files from production server to DRP server via internet. The two servers are in different states. For now, there isn't a lot of data to transfer but I suspect it might go up.

I read a lot about Rsync and DRBD.

My question are:

  1. Which of the two is better for this objective?
  2. Is there any better (freeware) tool for doing that?
  3. Are there any special problems doing that over the internet??

Thanks!

ewwhite
  • 197,159
  • 92
  • 443
  • 809
Kuf
  • 449
  • 2
  • 8
  • 25

1 Answers1

1

1) There should be no issues using rsync, you could also use dirvish which is a better solution in case you want incremental backups to be done.

2) rsync should be enough, but as before better use dirvish as it will give better control in case you need incremental backups.

3) There should be no issues here, rsync and dirvish can use sftp to transfer data thus the transfer should be pretty safe.

Logic Wreck
  • 1,420
  • 9
  • 8
  • Never heard of rsync using sftp. Did I miss something? Or were you refering to rsync + ssh (which secures files transfer but makes no use of the sftp protocol)? –  Aug 09 '12 at 21:26