Question
How to setup High Availability Wordpress i.e implementing a Failover on Digital Ocean
I am running Ubuntu 14.04 and I want to implement a simple yet effective Failover for my Wordpress site, to enable High Availability.
Currently, I am running my Wordpres site on just 1 Droplet. I was thinking about cloning the current Droplet and setup MySQL Master-Master replication in combination with DNS failover from DNSMadeEasy. However, the failover time is too long. It takes up to 10 minutes before the failover takes effect due to the nature DNS works with TTLs and such.
Hence, I started looking for another solution and found this: https://www.linode.com/docs/websites/cms/high-availability-wordpress
However, DigitalOcean does not offer Load Balancers, so I am looking for alternatives.....
My requirements are as pretty simple: In case the main/master Droplet goes down, it should switch over to the Backup/Failover Droplet. That’s all. No load balancing required, just failover only. Ofcourse, this requires that the databases on both Droplets are continously synced, else a failover makes no sense. Also, As soon the main/master Droplet comes back online, it should automatically sync the database again and switch back over to the main/master Droplet.
Would you please advise if this can be done on Digital Ocean? I would greatly appreciate if you provide me with a simple tutorial or hints to do it. I am still beginner to this technology.
Thanks.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
Hi, have you found a solution that you may like to share? I’m considering another type of solution involving polling the main server for http response. Ideally, the polling/monitoring server should be a third server. However, that still means writing and maintaining a script to accomplish that.