Link to home
Start Free TrialLog in
Avatar of Randy Johnson
Randy JohnsonFlag for United States of America

asked on

Synchronization Software

Hello,

I am looking software that will synchronize data from 1 directory on 1 server to a directory on another server.  Is there any software that does this?

Thanks

Randy
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

Consider rsync.
ASKER CERTIFIED SOLUTION
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of yuzh
yuzh

The "rsync" is the right tool to use, the trick is that you need to copy the date from your souce server, in your case use tape or CD, transfer the files to your target server, then run rsync to
sync the 2 dirs.

the options to use for rsync:
               /usr/local/bin/rsync --delete -az .........

also please have a look the following page at:
https://www.experts-exchange.com/questions/20790546/Need-to-sync-two-remote-file-systems-from-a-unix-box.html

Rsync is the right tool for the job; however, I would suggest tunneling it over ssh. Something similar to the following:

rsync somdir/ -ave ssh remoteserver:/remotedir

Hope this helps.

Cheers,
John