您好,登錄后才能下訂單哦!
Nginx-S上面也要配置跟Nginx-M上面一樣的Nginx代理服務配置
Nginx-M和Nginx-S的keepalived服務配置:
配置文件模板:
! Configuration File for keepalived
global_defs {
notification_email {
ops@wangshibo.cn
tech@wangshibo.cn
}
notification_email_from ops@wangshibo.cn
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-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代理服務器宕機的情況下,另一臺繼續工作
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。