Web-server – Simple Webserver failover

domain-name-systemfailoverweb-server

I will be running a dynamic web site and if the server ever is to stop responding, I'd like to failover to a static website that displays a "We are down for maintenance" page. I have been reading and I found that switching the DNS dynamically may be an option, but how quick will that change take place? And will everyone see the change immediately? Are there any better ways to failover to another server?

Best Answer

You will find this wikipedia article very informative as it list a lot of software. Sadly I don't think that this is easy or cheaply done in Windows.

What you are wanting is something like this - Linux HA - Which, from what I understand, the servers talk to each, via internal ip's. If one goes done, then another machine from that cluster takes over control of that IP. MS has Microsoft Cluster Server (MSCS) and Microsoft's Windows Server Failover Clustering (WSFC) for Server 2008.

Your other option is to look at using VMWare to do it, which has the same sort of failover capabilities, but then you have to buy the licensing for vmware on top of everything else.

Related Topic