A server administrator is tasked with ensuring that a critical database server remains available in the event of a hardware failure. The solution must provide automatic failover with minimal administrative overhead. Which of the following should be implemented?
Trap 1: Load balancing
Load balancing distributes network traffic across multiple servers but does not automatically fail over if a server goes down; it may route traffic to a failed server if health checks are not configured.
Trap 2: Scheduled backups
Scheduled backups protect data but do not ensure application availability; recovery from backup typically incurs significant downtime.
Trap 3: RAID 1 mirroring
RAID 1 provides disk redundancy but does not automatically fail over the server itself; manual intervention would be required to bring the backup server online.
- A
Load balancing
Why wrong: Load balancing distributes network traffic across multiple servers but does not automatically fail over if a server goes down; it may route traffic to a failed server if health checks are not configured.
- B
Scheduled backups
Why wrong: Scheduled backups protect data but do not ensure application availability; recovery from backup typically incurs significant downtime.
- C
RAID 1 mirroring
Why wrong: RAID 1 provides disk redundancy but does not automatically fail over the server itself; manual intervention would be required to bring the backup server online.
- D
Server clustering
Server clustering ties multiple servers together to act as a single system; if one node fails, another takes over automatically, providing high availability with minimal administrative effort.