Link to home
Start Free TrialLog in
Avatar of kibbs
kibbs

asked on

Web DNS: Redundant Web Server Question

I use GoDaddy to manage my webs DNS.  

If I host web sites at my office using IIS 6, have a static IP, and point the DNS to that IP, the name resolves very well.  My question, is:

How can I set up my web servers, so that in the event my office server goes down or is powered off, a person seeking my web pages will be redirected to another server at another location halfway across the country, that contains a similar copy of my webs?  

Is it possible to just add a second DNS entry, and if the first one is not found then it will automatically go to the second DNS which points to the other server at the other location?  What is the best way to accomlish this?  

Thanks!
Avatar of omarfarid
omarfarid
Flag of United Arab Emirates image

The DNS solution will just add a 2nd IP for your web site and load will be almost balanced over the two servers.

You look for Layer for load balancers that would send the traffic to your prime web server if it is up, or redirect connections to other web server if the primary one is down / not reachable.

Also, if you have control over routing the traffic to the primary web server, then you may reroute traffic to the other web server. This require full control over your network traffic.
ASKER CERTIFIED SOLUTION
Avatar of FilipZahradnik
FilipZahradnik
Flag of Australia 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
One idea (you need some scripting though; also, the actual failover is not going to happen immediately). When using the hosts file for dns resolution and a dns record is found in this file, the actual dns resolution process does not go through/to the dns server.

So, you could implement a script that does a continuous ping to the remote server and when it fails x times, then the script would edit the hosts file.

another soulution is to cluster the two servers.

Cheers,
R
Avatar of kibbs
kibbs

ASKER

Thank you very much, Your answer was very clear and thorough.  I'm a little new to hosting these servers and we're putting together the best plan available so our business will minimize its down time.    Thanks again!
Glad to help.