Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

Nginx-S上面也要配置跟Nginx-M上面一样的Nginx代理服务配置


Nginx-M和Nginx-S的keepalived服务配置:

Nginx+keepalived(部分配置)

Nginx+keepalived(部分配置)

配置文件模板:

! Configuration File for keepalived

global_defs {

notification_email {

[email protected]

[email protected]

}

notification_email_from [email protected]

smtp_server 127.0.0.1

smtp_connect_timeout 30

router_id master-node

}

vrrp_script chk_http_port {

script "/opt/chk_nginx.sh"

interval 2

weight -5

fall 2

rise 1

}

vrrp_instance VI_1 {

state MASTER

interface eth0

mcast_src_ip 192.168.115.173

virtual_router_id 51

priority 101

advert_int 1

authentication {

auth_type PASS

auth_pass 1111

}

virtual_ipaddress {

192.168.115.100

}

track_script {

chk_http_port

}

}

Nginx+keepalived(部分配置)

此监控脚本Nginx-S服务器上面也需要:

脚本模板:

#!/bin/bash

counter=$(ps -C nginx --no-heading|wc -l)

if [ "${counter}" = "0" ]; then

service nginx restart

sleep 2

counter=$(ps -C nginx --no-heading|wc -l)

if [ "${counter}" = "0" ]; then

service keepalived stop

fi

fi


WEB服务器上面只需要搭建Apache服务即可,不需要做其他的网络设置

将Nginx-M和Nginx-S服务器上面的keepalived和Nginx服务开启,再将/opt/下面的监控脚本执行,之后停掉任何一台Nginx代理服务器查看效果验证是否一台Nginx代理服务器宕机的情况下,另一台继续工作


转载于:https://blog.51cto.com/ahcwy/1940299

相关文章:

  • 2022-12-23
  • 2021-05-29
  • 2021-08-08
  • 2021-05-26
  • 2021-11-20
  • 2022-12-23
  • 2022-01-05
  • 2021-09-16
猜你喜欢
  • 2022-02-06
  • 2021-10-07
  • 2021-07-13
  • 2022-02-18
  • 2022-03-06
  • 2021-12-01
  • 2021-11-22
相关资源
相似解决方案