Posts

Showing posts from 2025

AWS - Route53 Failover Policy

Image
  "Route 53 failover" refers to  a feature within Amazon Route 53, a DNS service, that allows automatic redirection of traffic to a backup server or region if the primary server or region becomes unavailable , essentially ensuring continuous website access even during outages by utilizing health checks to monitor the status of your resources and route users to the healthy endpoint. For this post, I have 2 webservers running web application on port 80. First, I am going to create Route53 Private Hosted Zone.  The zone name is " labexample.com ". I am making this zone as private, so that it can be accessed with AWS VPC. Once we have the zone, we need to create Route53 health check, this is a critical piece to monitor the primary server and enabled route53 to failover if the primary server fails. IP address to monitor is the IP address of the primary server. Here, we are mentioning how often to monitor and failure threshold. Next, we will create DNS record under the p...