For UNIX/Linux server you can use rsync command to keep data sync'd between two servers. rsync also works under Windows NT/2003 server but it will take lots of time to setup.
For Microsoft Windows 2003 server use robocopy tool, to sync files between two windows server. You can download robocopy.exe and other files from Windows 2003 Resource Kit Tools set.
Once tool is downloaded, install the Resource Kit. By default robocopy located at c:\Program Files\Windows Resource Kits\Tools\robocopy.exe. Now let us assume that you want to sync d:\Inetpub\wwwroot\ directory between two Windows server. First create hidden share on www2 (secondary server)
- Login to www2
- Select d:\Inetpub\wwwroot\
- Right click > Properties > Sharing tab > Share this folder > Add $ at the end of share name and save the changes.
How do I use robocopy command?
=> Login to primary server (www1)
=> Click on stat > run > type cmd
=> At command prompt type command:
c:>"c:\program files\windows resource kits\tools\robocopy.exe d:\inetpub\wwwroot www2\\inetpub\wwwroot\"ALTERNATIVELY, use IP address of www2 server :
c:>"c:\program files\windows resource kits\tools\robocopy.exe d:\inetpub\wwwroot 202.54.10.200\\inetpub\wwwroot\"robocopy has many more options and lots of other information available in Robocopy.DOC file.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 16 comments… read them below or add one }
hi
how to post data from one server to another, using asymmetric data transfer.
Thanks in advance….
Hello,
I am sorry but i am not getting your question…
Can you explain it in details?
Thanks for your posts, nut I have a question:
I have a RHEL server (running IBM Lotus Domino for email server) and WindowsServer 2003 Std (backup storage server).
Can you give a help about :
- step-by-step tutorial about how to backup/restore from Linux svr to Windows svr?
- step-by-step tutorial about how to keep data sync’d between Linux svr to Windows svr?
Pls send me a copy to my email if you can!
Thanks again!
Hi,
is the sync two way ?meaning i have server a and server b in a load balanced environment so i wanna to sync file btw this 2 server..from A to B and also from B to A..Thanks.
Hi Jeffrey,
Yes you can do both ways. You need to write appropriate batch file.
HTH
I have the same scenario illustrated by jeffrey, do you have a sample of the batch file you mention.Will robocpy connect to a unix/linux server and copy data across to a windows 2003 and keep the data sync.
I will appreciate if you help with the batch file or point what should be included in it.
Any word on getting that batch file?
I found this script in a web site long back.
There are many new parameters, you can add that from help
Hope this helps.
Robocopy scripts are good, but I use ViceVersa PRO to sync file between my servers. It is not free, but it won’t fail you!
Thanks for your information.
HI
How can we synchronize data between two SQL Server Databases using our programmed code.
If you are going to use RoboCopy to Sync folders bi-directionally, you need to be cautious of the default copy behavior (it will copy files which have changed, are newer or older). The example given above is only a one-way sync, as files changed on the destination server would be overwritten on the next copy.
The /XO option (exclude older source files) should be added so that older files on the source do not overwrite the destination. Then simply reiterate the same command, swapping the source and destination.
i’ve found this tool called UNISON, it is UNIX and WINDOWS compatible! the tool is incredible powerfull for synchronizing data.
Enjoy!
http://www.cis.upenn.edu/~bcpierce/unison/download.html
Any updates to this thread to work with new technologies?
Better solution for Windows Server 2008 ?
Hi,
i would like to introduce myself, we are US based Company, and having offices in India & NY in current setup we are accessing that server via vertual machines and facing accessing speed problem for that we want to setup a new server in india also and data will sync in both ways, so with this practice we can access servers locally(india & NY), and share the same data from any of both servers.
i would like to request you please send me the details of your synchronizing software which can run into windows 2003 server & windows xp we want ot buy it but before that we would like to have Demo/Trial copy of that software, and also quotation for the same.
Hi Ajeet,
I must say that I don’t understand how you’d access a server “via virtual machines”, but there are perhaps other options to avoid setting up a second server. For example using Remote Desktop, or Terminal Services to allow only the screen/mouse/keyboard updates to be transferred.
If you’re just looking for a 2 server setup, one in India, one in NY with files replicated between the two, then I’d suggest that your best and easiest option is to use Windows Server (if you’re using Windows Server already) and setup DFS and FRS (Distributed File System, File Replication Services). This handles A LOT of things for you behind the scenes like sync times, as well as 2-way sync, which neither RSync nor RoboCopy can do. It is also included in Windows Server… so no additional cost.
Regards,