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
11
votes
2 answers

nginx use proxy cache if backend is down

I need to nginx proxy use cache if backend server down: this is my configuration. but seems be nginx use cache without check backend server. http { # ... proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; …
11
votes
8 answers

Why are my HyperV VM's randomly losing connectivity?

I have a strange intermittent connectivity problem happening about once every two weeks. First my configuration: I am running a HyperV failover cluster with two physical hosts (node01 and node02). The hosts are both running Windows Server 2008 R2…
Mike
  • 1,271
  • 5
  • 18
  • 31
10
votes
2 answers

Server 2016 MSMQ failover

I would like to setup a MSMQ in a failover system. I do not have a shared storage setup (hardware not available - budget), but i have three dl380 running windows server 2016. I would like to setup failover with a quorum server. is this setup…
pithhelmet
  • 202
  • 1
  • 9
10
votes
1 answer

Keepalived send gratuitous ARP periodically

Is there a way for a keepalived to send gratuitous ARP periodically? We had following situation: switch failure (VLAN setup) keepalived failovered to backup instance backup instance sent gratuitous ARP but Cisco ASA device didn't got it (because of…
9
votes
11 answers

good failover / high availability solutions for linux?

I have several cases where I need applications to be migrated from one server to another in the event of a failure (server hang or crash). On solaris we do this with VCS (Veritas Cluster Server). What options are available for Linux? Please indicate…
ericslaw
  • 1,572
  • 2
  • 13
  • 15
9
votes
3 answers

Global high availability setup question

I own and operate visualwebsiteoptimizer.com/. The app provides a code snippet which my customers insert in their websites to track certain metrics. Since the code snippet is external JavaScript (at the top of site code), before showing a customer…
Paras Chopra
  • 543
  • 1
  • 5
  • 15
8
votes
1 answer

Azure Site Recovery unplanned failover

I have managed to create a DR of a couple virtual machines to Azure. I am using Azure site recovery and Azure resource manager, and I followed this manual about how to do this…
8
votes
2 answers

DNS issue with Failover IP from Hetzner

Assume we have two servers A and B with 'real' and external IPs and we can switch the so called 'failover ip' (W.X.Y.Z) to point to a specific external IP of A or B. This works from the 'outside' and was easily done. As a background: the failover…
8
votes
2 answers

Redis high availability and load balancing

I'm using Redis for some time and now we want to move to a redundant cluster which would be fault tolerant, highly available and load balanced. I principally use Redis for some PHP web application which stores some process status information (I'm…
Mat
  • 1,873
  • 7
  • 25
  • 41
8
votes
5 answers

Hot spare host vs cold spare host?

We have several hosts where we have an identical hot spare host, which is patched and updated so it is very close to have to same software and config. In case of failure the network cable is switched and the DHCP server is updated with the new MAC…
Jasmine Lognnes
  • 2,520
  • 8
  • 33
  • 51
8
votes
7 answers

How to perform cron jobs failover?

Using two Debian servers, I need to setup a strong failover environment for cron jobs that can be only called on one server at a time. Moving a file in /etc/cron.d should do the trick, but is there a simple HA solution to operate such action ? And…
Falken
  • 1,702
  • 5
  • 18
  • 28
8
votes
6 answers

Ubuntu failover from Ethernet-to-ADSL-modem to USB 3G dongle

I have an internet connected Ubuntu server, connected by Ethernet to a residential ADSL line. This is adequate, most of the time, but I can't rely upon the ADSL link to be as reliable as I'd like. Murphy's law has already dictated that down-time…
aSteve
  • 231
  • 1
  • 4
  • 10
8
votes
3 answers

Access files located on the underlying filesystem of an NFS mountpoint

Perhaps this is an odd request, but it's the opposite of the question detailed at: Is it possible to view the contents of an underlying NFS mount without unmounting the NFS content? I have an arrangement where Linux servers at multiple remote sites…
ewwhite
  • 197,159
  • 92
  • 443
  • 809
7
votes
1 answer

Internal storage as HA failover cluster storage pool ?

I have 2 HyperV server (2012 R2) nodes with shared ISCSI storage (ubuntu 16.04) in a Failover Cluster. I want to make that 3 servers (windows server 2016 and/or 2012r2) each with 2 partitions, one for the system and one as storage. How would I…
Carobell
  • 331
  • 4
  • 16
7
votes
4 answers

What is the most effective way to setup a linux web server for manual failover

I currently administer a small web server running ubuntu linux with apache, mysql, and ssh. I'm backing it up using rsync to another server, but I'm backing it up to a /backup directory. I'd like to have it set up where if the first server goes down…
ScArcher2
  • 623
  • 1
  • 7
  • 9
1
2
3
51 52