1

I'm having 2 identical webservers(running IIS) which i intend to load balance with Hardware Based Application Load Balancer. I need a Synchronization software to do real-time sync of the data between the 2 servers. Any suggestions for a good sync app to accomplish the task?

2 Answers2

1

Try the Web Farm Framework, or the Web Deployment Tool.

http://www.iis.net/download/webfarmframework

http://www.iis.net/download/WebDeploy

WFF automatically synchronizes, but requires a controller machine to do this. Web Deploy can script site/content/settings syncs.

TristanK
  • 9,073
  • 2
  • 28
  • 39
0

You best bet is to use the built in windows functionality DRS which allows you to replicate shares/folders between two or more machines in real time.

ccame
  • 1,059
  • 2
  • 11
  • 15
  • can u provide any links for the DRS ? I also want to know whether there will be any over head while using the in-built Functionality of Windows for Real-time sync – harryoxford Apr 29 '11 at 08:15
  • http://en.wikipedia.org/wiki/File_Replication_Service is a good start. There will of course be an overhead but its usually quite small with DRS as it monitors files and folders for writes rather than constantly reading all files looking for changes. It does require some RAM (depending on folder size) to hold its replication state and information within however. – ccame May 09 '11 at 14:23
  • I think that File Replication Service has been replaced by https://en.wikipedia.org/wiki/Distributed_File_System_(Microsoft) but beware that solution is probably not safe with virtual machines or restoring from full backups as per http://blogs.technet.com/b/filecab/archive/2013/04/05/safely-virtualizing-dfsr.aspx – robocat Jan 21 '16 at 00:08