双主模式nginx + keepalived配置(双机互为主备)

2024-01-07 09:18

本文主要是介绍双主模式nginx + keepalived配置(双机互为主备),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

配置nginx+keepalived的双主机双机热备,这种配置下有两个Virtual IP,两个机器互为主备,最后我们把域名DNS服务器解析至两个Virtual IP即可。


环境介绍

两台服务器

Server1:192.168.30.61 
Server2:192.168.30.62

要设置的两个虚拟IP

Virtual IP1:192.168.30.51 
Virtual IP2:192.168.30.52

将DNS域名解析至两个虚拟IP: 192.168.30.51、192.168.30.52


网络扑拓图

这里写图片描述


配置第一台服务器


第一台服务器ip为192.168.30.61

vi /etc/keepalived/keepalived.conf

配置内容如下:

global_defs
{notification_email{123456@qq.com}notification_email_from 123456@qq.comsmtp_server 127.0.0.1stmp_connect_timeout 30router_id LVS_DEVEL
}vrrp_script Monitor_Nginx {script "/usr/local/keepalived/scripts/monitor_nginx.sh"interval 2weight 2
}# 虚拟IP1, 本机作为Master
vrrp_instance VI_1 {state MASTERinterface enp0s3virtual_router_id 51priority 100advert_int 1track_interface {enp0s3}authentication {auth_type PASSauth_pass 123456}virtual_ipaddress {192.168.30.51}itrack_script {Monitor_Nginx}}# 虚拟IP2, 本机作为Backup
vrrp_instance VI_2 {state BACKUPinterface enp0s3virtual_router_id 52priority 100advert_int 1track_interface {enp0s3}authentication {auth_type PASSauth_pass 123456}virtual_ipaddress {192.168.30.52}track_script {Monitor_Nginx}}

配置第二台服务器


第二台服务器ip为192.168.30.62

vi /etc/keepalived/keepalived.conf

配置内容如下:

global_defs
{notification_email{123456@qq.com}notification_email_from 123456@qq.comsmtp_server 127.0.0.1stmp_connect_timeout 30router_id LVS_DEVEL
}vrrp_script Monitor_Nginx {script "/usr/local/keepalived/scripts/monitor_nginx.sh"interval 2weight 2
}# 虚拟IP1, 本机作为BACKUP
vrrp_instance VI_1 {state BACKUPinterface enp0s3virtual_router_id 51priority 100advert_int 1track_interface {enp0s3}authentication {auth_type PASSauth_pass 123456}virtual_ipaddress {192.168.30.51}track_script {Monitor_Nginx}
}# 虚拟IP2, 本机作为Master
vrrp_instance VI_2 {state MASTERinterface enp0s3virtual_router_id 52priority 100advert_int 1track_interface {enp0s3}authentication {auth_type PASSauth_pass 123456}virtual_ipaddress {192.168.30.52}track_script {Monitor_Nginx}}

监控脚本


和之前的监控脚本一样

# 监控nginx进程,若nginx主进程不存在则启动nginx
# 若5s后nginx进程还是不存在的话kill掉keepalived进程,防止nginx没运行该主机的keepalived还接管虚拟IP
#!/bin/bash
if [ "$(ps -ef | grep "nginx: master process"| grep -v grep )" == "" ]then/usr/local/nginx/sbin/nginxsleep 5if [ "$(ps -ef | grep "nginx: master process"| grep -v grep )" == "" ]thenkillall keepalivedfi
fi

测试


修改nginx默认访问页nginx的默认页面

# nginx 默认访问页面
$NGINX_HOME/html/index.html

修改server1的页,加入IP: 192.168.30.61

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>body {width: 35em;margin: 0 auto;font-family: Tahoma, Verdana, Arial, sans-serif;}
</style>
</head>
<body>
<h1>Welcome to nginx! 192.168.30.61 </h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p><p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p><p><em>Thank you for using nginx.</em></p>
</body>
</html>

server2同理


两个机器都启动keepalived和nginx

访问虚拟ip1

在浏览器输入192.168.30.51进入访问页面 
这里写图片描述

访问虚拟ip2

在浏览器输入192.168.30.52进入访问页面 
这里写图片描述

证明两个VIP都起效果了


Kill掉server2的keepalived

pkill keepalived
  • 访问ip2

这里写图片描述

证明了server1为server2的备机,server2 down掉后server1接管server1的nginx访问


Kill掉server1机器的keepalived,启动server2机器的keepalived

  • 访问ip1

这里写图片描述

证明了server2为server1的备机,server1 down掉后server1接管server1的nginx访问


有关nginx和keepalived的安装可参考

  • Linux下安装nginx
  • 使用keepalived来实现nginx的高可用

这篇关于双主模式nginx + keepalived配置(双机互为主备)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/579447

相关文章

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

springboot security之前后端分离配置方式

《springbootsecurity之前后端分离配置方式》:本文主要介绍springbootsecurity之前后端分离配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的... 目录前言自定义配置认证失败自定义处理登录相关接口匿名访问前置文章总结前言spring boot secu

一文详解SpringBoot响应压缩功能的配置与优化

《一文详解SpringBoot响应压缩功能的配置与优化》SpringBoot的响应压缩功能基于智能协商机制,需同时满足很多条件,本文主要为大家详细介绍了SpringBoot响应压缩功能的配置与优化,需... 目录一、核心工作机制1.1 自动协商触发条件1.2 压缩处理流程二、配置方案详解2.1 基础YAML

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

Spring Boot结成MyBatis-Plus最全配置指南

《SpringBoot结成MyBatis-Plus最全配置指南》本文主要介绍了SpringBoot结成MyBatis-Plus最全配置指南,包括依赖引入、配置数据源、Mapper扫描、基本CRUD操... 目录前言详细操作一.创建项目并引入相关依赖二.配置数据源信息三.编写相关代码查zsRArly询数据库数

SpringBoot配置Ollama实现本地部署DeepSeek

《SpringBoot配置Ollama实现本地部署DeepSeek》本文主要介绍了在本地环境中使用Ollama配置DeepSeek模型,并在IntelliJIDEA中创建一个Sprin... 目录前言详细步骤一、本地配置DeepSeek二、SpringBoot项目调用本地DeepSeek前言随着人工智能技

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各