Active-Passive HA
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="proxy.php?url=https%3A%2F%2Fstatuscodefyi.com%2Fiframe%2Fglossary%2Factive-passive-ha%2F" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://statuscodefyi.com/glossary/active-passive-ha/
Add a dynamic SVG badge to your README or docs.
[](https://statuscodefyi.com/glossary/active-passive-ha/)
Use the native HTML custom element.
A high-availability topology in which a primary (active) node handles all production traffic while an identical standby (passive) node remains idle, continuously synchronised with the primary's state. If the primary fails, a failover mechanism — often based on heartbeat signals and VRRP (Virtual Router Redundancy Protocol) or keepalived — promotes the passive node to active and transfers the virtual IP address. Active-passive HA simplifies state management because only one node writes at a time, but wastes the capacity of the standby node. It is common for stateful components such as primary database servers and hardware load balancers.