Questions tagged [failover]

In computing, failover is automatic switching to a redundant or standby computer server, system, or network upon the failure or abnormal termination of the previously active application, server, system, or network. Failover and switchover are essentially the same operation, except that failover is automatic and usually operates without warning, while switchover requires human intervention.

In computing, failover is automatic switching to a redundant or standby computer server, system, or network upon the failure or abnormal termination of the previously active application,server, system, or network. Failover and switchover are essentially the same operation, except that failover is automatic and usually operates without warning, while switchover requires human intervention.

Systems designers usually provide failover capability in servers, systems or networks requiring continuous availability and a high degree of reliability. At server level, failover automation usually uses a "heartbeat" cable that connects two servers. As long as a regular "pulse" or "heartbeat" continues between the main server and the second server, the second server will not initiate its systems. There may also be a third "spare parts" server that has running spare components for "hot" switching to prevent downtime. The second server takes over the work of the first as soon as it detects an alteration in the "heartbeat" of the first machine. Some systems have the ability to send a notification of failover.

Some systems, intentionally, do not failover entirely automatically, but require human intervention. This "automated with manual approval" configuration runs automatically once a human has approved the failover.

Source: wikipedia

772 questions
5
votes
1 answer

PostgreSQL failover cluster on Windows Server

We are looking for advice on how to setup a basic failover cluster for our application: We will be using 4 machines running Microsoft Windows Server (most probably 2003). All four will always run our application, which is essentially a web…
Yodan Tauber
  • 173
  • 2
  • 6
5
votes
4 answers

Providing high availability and failover using MySQL on EC2

I would like to have a highly-available MySQL system, with automatic failover, running on Amazon EC2 instances. The standard approach to solving this is problem Heartbeat + DRBD, but I've found a lot of posts suggesting DRBD doesn't work on EC2,…
crb
  • 7,998
  • 1
  • 38
  • 53
5
votes
1 answer

DNS Round-robin failover and load balancing

Having read all of the questions and answers (1 2 3 and so on) on here relating to DNS load balancing, and Round-robin DNS, there's still a number of unanswered questions.. Large companies, and I'm looking at Google, Facebook and Twitter here, do…
Tom O'Connor
  • 27,480
  • 10
  • 73
  • 148
4
votes
2 answers

Failover Cluster file server performance issue with Windows Server 2016

I've run into an interesting file server transfer speed performance issue with a failover cluster I recently configured in Server 2016. The specific issue is that when I access the file share from the clustered storage path (e.g. \\store01\share01)…
4
votes
1 answer

Failover Cluster Manager showing wrong interface for node

I have a 2 node 2012 R2 Hyper-V setup that i am trying to configure Hyper-V HA. The network setup for both nodes are as follows: Total: (8 x Ports): 4 x Adapters - (Teamed:Production/VM external access) @ 3 x 1Gbps and 1 x 10Gbps Teaming Mode:…
4
votes
2 answers

How can I create shared disks for Windows SoFS VMs in VMware?

I am looking to move our DFS-R file servers to SoFS to accommodate our User Profile Disks in Windows Server 2012 R2 remote desktop services. DFS-R does not give us any fail over capability as it stands, so if we lose the primary file server, user's…
James Edmonds
  • 1,733
  • 10
  • 37
  • 59
4
votes
2 answers

Why should we purchase a dedicated load balancer when the firewall can do it?

I've got 2 servers, let's call them 'node1' and 'node2' installed at a data centre. They run our application software. They are interchangeable, and each have a full copy of all customers' databases. We want customers to be able to log into a…
Tim Cooper
  • 151
  • 3
4
votes
3 answers

how to avoid timeouts during server reboot

I am running into issues with a site that is using DNS round robin for failover. There are two webservers. When I turn off apache on one box, everything is fine. When browsers try to go to the webserver with apache turned off, it gets a connection…
user788171
  • 279
  • 1
  • 5
  • 13
4
votes
9 answers

Best solution for Multi-WAN failover (inside & out)?

Looking for a way to setup 2 ISPs in failover mode, for both incoming & outgoing traffic, for our small (<100 devices) network. The leading contender for now seems to be the Peplink Balance 310. However, a reseller I spoke with said it's great for…
Sean O
  • 277
  • 4
  • 5
  • 16
4
votes
2 answers

How to handle IP's with manual failover?

I have two identical storage hosts where the master is the only one the users can access. If the master fails, then I want to manually change the DHCP address, so instead of master points to 10.10.10.10 it should point to 10.10.10.11. There are…
Sandra
  • 10,303
  • 38
  • 112
  • 165
4
votes
1 answer

High Available SQL Server without SAN by using AlwaysOn feature

I have two Microsoft SQL Servers (v 2012) and I want to make them mirror and when one of them goes down the second one will be replaced. AlwaysOn is a new feature in SQL Server 2012 that is designated to High availability solutions. I must say that…
4
votes
1 answer

Redis sentinel + HAProxy failover

I am looking to implement a HA redis implementation using Master-Slave redis servers. The web servers will connect to these through an HAProxy instance installed on each box. The situation is easy with only two servers, if one goes down the other…
JonoCoetzee
  • 315
  • 1
  • 3
  • 12
4
votes
2 answers

DHCP failover with isc-dhcp-server using two secondary servers

I'm rearranging our network and putting some DHCP failover since we have a lot of machines, and even servers, getting IP addresses with DHCP. Today we have a nice DNS topology with one master server and two slaves. The DHCP gives the slaves address…
Vinícius Ferrão
  • 5,520
  • 11
  • 55
  • 95
4
votes
2 answers

Performance penalty when using CNAME

We are using the current CNAME record for a server, i.e. foo.example.com => CNAME => server1.example.com server1.example.com => CNAME => ec2-34-142-138-31.compute-1.amazonaws.com ec2-34-142-138-31.compute-1.amazonaws.com => A =>…
4
votes
4 answers

Achieving Five Nines

I am building a web application where uptime is key. I understand that 100% uptime is not realistic but I would like to achieve five nines. I'm unsure as to the most prudent way to accomplish this. My preliminary plan was to have the web app running…
user102878