I am using Doors for synchronization of my project modules. However if i have to synchronize modules for two different servers located at two different locations, say from Pune to Hallstadt. What script can I use for faster transfer of zipped files whilst synchronizing?
feedback
|
|
You might try to use rsync - it would sync one directory to another, transferring only changed parts of files. There are also number of windows versions, like cwrsync. EDIT: oh, you want to synchronize two unix servers. Most modern unixes already have rsync or have rsync package available. To synchronize server1 to server2 you need to execute something like that on server1:
This syntax tells rsync to use ssh, so you don't need to run rsync server and transfer would be encrypted. | |||||||||
feedback
|
|
If you are not already passing the data through a VPN, you can try this as it can provide some increase in transfer. Else you have the options of purchasing larger pipes to the locations or making the files smaller. You could try QOS, but it won't effect much unless the bottle neck is on your network which is unlikely. | |||||||||||
feedback
|