{"id":5443,"date":"2023-02-15T14:23:00","date_gmt":"2023-02-15T08:53:00","guid":{"rendered":"https:\/\/trysiteprice.com\/blog\/?p=5443"},"modified":"2023-02-15T14:23:00","modified_gmt":"2023-02-15T08:53:00","slug":"handling-nginx-failover-with-keepalived","status":"publish","type":"post","link":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/","title":{"rendered":"Handling nginx Failover With KeepAlived"},"content":{"rendered":"<p>Keepalived is a free, open-source software package that provides failover and load-balancing services for Linux-based systems. It is commonly used to manage web servers and proxies, including nginx. In this example, we will set up a failover cluster with two nginx servers, one acting as the master and the other as a backup.<\/p>\n<p>Here are the steps to set up a failover cluster with Keepalived and nginx:<\/p>\n<ol>\n<li>Install Keepalived on both servers.\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-sql\">sudo apt<span class=\"hljs-operator\">-<\/span><span class=\"hljs-keyword\">get<\/span> <span class=\"hljs-keyword\">update<\/span><br \/>\nsudo apt<span class=\"hljs-operator\">-<\/span><span class=\"hljs-keyword\">get<\/span> install keepalived<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li>Configure Keepalived on both servers. Create a configuration file <code>\/etc\/keepalived\/keepalived.conf<\/code> with the following content:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-kotlin\">vrrp_script chk_nginx {<br \/>\n     script <span class=\"hljs-string\">\"\/usr\/bin\/pgrep nginx\"<\/span><br \/>\n     interval <span class=\"hljs-number\">2<\/span><br \/>\n}<\/p>\n<p>vrrp_instance VI_1 {<br \/>\n     <span class=\"hljs-keyword\">interface<\/span> <span class=\"hljs-title class_\">eth0<\/span><br \/>\n     state MASTER<br \/>\n     virtual_router_id <span class=\"hljs-number\">51<\/span><br \/>\n     priority <span class=\"hljs-number\">101<\/span><br \/>\n     advert_int <span class=\"hljs-number\">1<\/span><br \/>\n     authentication {<br \/>\n         auth_type PASS<br \/>\n         auth_pass MySecretPassword<br \/>\n     }<br \/>\n     virtual_ipaddress {<br \/>\n         <span class=\"hljs-number\">10.0<\/span><span class=\"hljs-number\">.0<\/span><span class=\"hljs-number\">.100<\/span>\/<span class=\"hljs-number\">24<\/span><br \/>\n     }<br \/>\n     track_script {<br \/>\n         chk_nginx<br \/>\n     }<br \/>\n}<br \/>\n<\/code><\/div>\n<\/div>\n<p>This configuration file defines a VRRP instance with ID 51 and virtual IP address 10.0.0.100, which will be the IP address used to access nginx. The <code>chk_nginx<\/code> script will check whether nginx is running. The <code>priority<\/code> parameter determines which server is the master, with the server with the highest priority being the master.<\/p>\n<p>Note that you should replace <code>MySecretPassword<\/code> with a strong password.<\/li>\n<li>Configure nginx on both servers. In the nginx configuration file <code>\/etc\/nginx\/nginx.conf<\/code>, add the following lines:\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-perl\">upstream backend {<br \/>\n     server <span class=\"hljs-number\">10.0<\/span>.<span class=\"hljs-number\">0<\/span>.<span class=\"hljs-number\">101<\/span>;<br \/>\n     server <span class=\"hljs-number\">10.0<\/span>.<span class=\"hljs-number\">0<\/span>.<span class=\"hljs-number\">102<\/span> backup;<br \/>\n}<\/p>\n<p>server {<br \/>\n     <span class=\"hljs-keyword\">listen<\/span> <span class=\"hljs-number\">10.0<\/span>.<span class=\"hljs-number\">0<\/span>.<span class=\"hljs-number\">100<\/span>:<span class=\"hljs-number\">80<\/span>;<br \/>\n     server_name myserver.com;<\/p>\n<p>     location \/ {<br \/>\n         proxy_pass http:<span class=\"hljs-regexp\">\/\/<\/span>backend;<br \/>\n         proxy_set_header Host $host;<br \/>\n         proxy_set_header X-Real-IP $remote_addr;<br \/>\n         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br \/>\n     }<br \/>\n}<br \/>\n<\/code><\/div>\n<\/div>\n<p>This configuration defines an upstream backend with two servers, one at 10.0.0.101 and one at 10.0.0.102. The <code>backup<\/code> parameter tells nginx that the second server should only be used if the first server is unavailable. The server block defines a server listening on the virtual IP address 10.0.0.100 and proxying requests to the backend servers.<\/li>\n<li>Restart nginx and Keepalived on both servers.\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs\">sudo systemctl restart nginx<br \/>\nsudo systemctl restart keepalived<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<\/ol>\n<p>That&#8217;s it! You now have a failover cluster with two nginx servers, one acting as the master and the other as a backup. If the master server fails, the backup server will take over and serve requests. Note that this configuration can be modified to include additional servers, load balancing algorithms, and other options.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Keepalived is a free, open-source software package that provides failover and load-balancing services for Linux-based systems. It is commonly used to manage web servers and proxies, including nginx. In this example, we will set up a failover cluster with two nginx servers, one acting as the master and the other as a backup. Here are &#8230; <a title=\"Handling nginx Failover With KeepAlived\" class=\"read-more\" href=\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\" aria-label=\"Read more about Handling nginx Failover With KeepAlived\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-5443","post","type-post","status-publish","format-standard","hentry","category-best-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Handling nginx Failover With KeepAlived - TrySitePrice<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Handling nginx Failover With KeepAlived - TrySitePrice\" \/>\n<meta property=\"og:description\" content=\"Keepalived is a free, open-source software package that provides failover and load-balancing services for Linux-based systems. It is commonly used to manage web servers and proxies, including nginx. In this example, we will set up a failover cluster with two nginx servers, one acting as the master and the other as a backup. Here are ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\" \/>\n<meta property=\"og:site_name\" content=\"TrySitePrice\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-15T08:53:00+00:00\" \/>\n<meta name=\"author\" content=\"Rahul Sahu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\"},\"author\":{\"name\":\"Rahul Sahu\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\"},\"headline\":\"Handling nginx Failover With KeepAlived\",\"datePublished\":\"2023-02-15T08:53:00+00:00\",\"dateModified\":\"2023-02-15T08:53:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\"},\"wordCount\":274,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"articleSection\":[\"Best\/Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\",\"name\":\"Handling nginx Failover With KeepAlived - TrySitePrice\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\"},\"datePublished\":\"2023-02-15T08:53:00+00:00\",\"dateModified\":\"2023-02-15T08:53:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/trysiteprice.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Handling nginx Failover With KeepAlived\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"name\":\"TrySitePrice\",\"description\":\"Free Website Value Calculator Tool\",\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\",\"name\":\"TrySitePrice\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"contentUrl\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"width\":395,\"height\":268,\"caption\":\"TrySitePrice\"},\"image\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\",\"name\":\"Rahul Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"caption\":\"Rahul Sahu\"},\"sameAs\":[\"https:\/\/trysiteprice.com\/blog\"],\"url\":\"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Handling nginx Failover With KeepAlived - TrySitePrice","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/","og_locale":"en_US","og_type":"article","og_title":"Handling nginx Failover With KeepAlived - TrySitePrice","og_description":"Keepalived is a free, open-source software package that provides failover and load-balancing services for Linux-based systems. It is commonly used to manage web servers and proxies, including nginx. In this example, we will set up a failover cluster with two nginx servers, one acting as the master and the other as a backup. Here are ... Read more","og_url":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/","og_site_name":"TrySitePrice","article_published_time":"2023-02-15T08:53:00+00:00","author":"Rahul Sahu","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#article","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/"},"author":{"name":"Rahul Sahu","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4"},"headline":"Handling nginx Failover With KeepAlived","datePublished":"2023-02-15T08:53:00+00:00","dateModified":"2023-02-15T08:53:00+00:00","mainEntityOfPage":{"@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/"},"wordCount":274,"commentCount":0,"publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"articleSection":["Best\/Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/","url":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/","name":"Handling nginx Failover With KeepAlived - TrySitePrice","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/#website"},"datePublished":"2023-02-15T08:53:00+00:00","dateModified":"2023-02-15T08:53:00+00:00","breadcrumb":{"@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/trysiteprice.com\/blog\/handling-nginx-failover-with-keepalived\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/trysiteprice.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Handling nginx Failover With KeepAlived"}]},{"@type":"WebSite","@id":"https:\/\/trysiteprice.com\/blog\/#website","url":"https:\/\/trysiteprice.com\/blog\/","name":"TrySitePrice","description":"Free Website Value Calculator Tool","publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/trysiteprice.com\/blog\/#organization","name":"TrySitePrice","url":"https:\/\/trysiteprice.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","contentUrl":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","width":395,"height":268,"caption":"TrySitePrice"},"image":{"@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4","name":"Rahul Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","caption":"Rahul Sahu"},"sameAs":["https:\/\/trysiteprice.com\/blog"],"url":"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/"}]}},"_links":{"self":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/5443","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/comments?post=5443"}],"version-history":[{"count":1,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/5443\/revisions"}],"predecessor-version":[{"id":5446,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/5443\/revisions\/5446"}],"wp:attachment":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/media?parent=5443"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/categories?post=5443"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/tags?post=5443"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}