nginx+keepalived高可用web架构

1、下载所需的软件包

(1)、keepalived软件包
    keepalived-1.1.20.tar.gz
(2)、nginx软件包
    nginx-1.1.6.tar.gz
(3)、nginx模块软件包
    libunwind-0.99.tar.gz
    agentzh-encrypted-session-nginx-module-v0.02-0-gc752861.tar.gz
    chunkin-nginx-module-0.23rc2.tar.gz
    google-perftools-1.8.3.tar.gz
    pcre-8.11.tar.gz
    simpl-ngx_devel_kit-v0.2.17-10-g4192ba6.tar.gz

2、安装脚本

#!/bin/bash
#
#
# this is install nginx
#
#
keepalived_dir=/usr/local/keepalived
tar_dir=/usr/src
kernel=$(uname -r)    
software_dir=/root/software

cd $software_dir
yum install gcc gcc-c++ autoconf automake wget openssl-devel kernel-devel  pcre-devel zlib-devel -y
echo "tar and mv nginx module"
tar -zxf agentzh-encrypted-session-nginx-module-v0.02-0-gc752861.tar.gz 
mv agentzh-encrypted-session-nginx-module-c752861 encrypted-session-nginx-module

tar -zxf chunkin-nginx-module-0.23rc2.tar.gz 
mv chunkin-nginx-module-0.23rc2 chunkin-nginx-module

tar -zxf simpl-ngx_devel_kit-v0.2.17-10-g4192ba6.tar.gz 
mv simpl-ngx_devel_kit-4192ba6 ngx_devel_kit

echo "configure and install pcre"
tar zxf pcre-8.11.tar.gz 
cd pcre-8.11
make clean
./configure 
make && make install

echo "configure and install google-perftools use"
cd $software_dir
tar -zxf libunwind-0.99.tar.gz 
cd libunwind-0.99
make clean
./configure  CFLAGS=-fPIC 
make CFLAGS=-fPIC
make install CFLAGS=-fPIC 

echo "configure and install google-perftools"
cd $software_dir
tar zxf google-perftools-1.8.3.tar.gz 
cd google-perftools-1.8.3
./configure --enable-frame-pointers #64
make -j 4 && make install

ln -s /usr/local/lib/libprofiler.so.0 /lib/
ln -s /usr/local/lib/libprofiler.so.0 /usr/lib
ln -s /usr/local/lib/libprofiler.so.0 /lib64
ln -s /usr/local/lib/libprofiler.so.0 /usr/lib64

ln -s /usr/local/lib/libunwind.so.7 /lib/
ln -s /usr/local/lib/libunwind.so.7 /usr/lib
ln -s /usr/local/lib/libunwind.so.7 /lib64
ln -s /usr/local/lib/libunwind.so.7 /usr/lib64

echo "configure and install nginx"
cd $software_dir
tar -zxf nginx-1.1.6.tar.gz 
cd nginx-1.1.6
make clean
./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-file-aio --with-http_stub_status_module --with-http_sub_module --with-http_addition_module --with-http_random_index_module --with-http_secure_link_module --with-http_dav_module --with-http_mp4_module --with-http_degradation_module --with-http_gzip_static_module --with-google_perftools_module --with-http_flv_module --add-module=/root/software/chunkin-nginx-module --add-module=/root/software/ngx_devel_kit/ --add-module=/root/software/encrypted-session-nginx-module --with-pcre
make && make install
cd $software_dir

useradd www  #or configure nginx.conf nobody 
/usr/local/nginx/sbin/nginx      #启动nginx

#
#
#this is for install keepalived bash
#
#

cd $software_dir
tar -zxf keepalived-*.tar.gz -C $tar_dir
cd /usr/src/keepalived-*
./configure --prefix=$keepalived_dir --sysconf=/etc --with-kernel-dir=/usr/src/kernels/$kernel*
make && make install
    
cp /usr/local/keepalived/sbin/keepalived /usr/sbin
cp /usr/local/keepalived/bin/genhash /usr/sbin/
/etc/init.d/keepalived restart

3、keepalived配置文件

! Configuration File for keepalived

global_defs {
   notification_email {
     [email protected]
   }
   notification_email_from [email protected]
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id httpd
}

vrrp_script check_http {
        script "/root/bash/check_httpd.sh"
        weight -5
        interval 1
    }

vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 240
    priority 98
    advert_int 1
    track_script {
        check_http
    }
    authentication {
        auth_type PASS
        auth_pass 3333
    }
    virtual_ipaddress {
       192.168.80.200/24 dev eth0
    }
}

4、check_httpd.sh监测脚本

#!/bin/bash

CHECK_TIME=2

check()
{
        curl http://127.0.0.1/ >/dev/null 2>&1
        ret=$?
        if [ $ret -ne 0 ];then
                return $ret;
        fi
}
while [ $CHECK_TIME -ne 0 ]
do
        let "CHECK_TIME -= 1"
        check
        HTTP_OK=$?
        if [ $HTTP_OK -eq 0 ];then
                exit 0
        fi
        if [ $HTTP_OK -ne 0 ] &&  [ $CHECK_TIME -eq 0 ]
        then
            exit 1
        fi
done

nginx+keepalived高可用web架构

时间: 2024-11-08 09:17:53

nginx+keepalived高可用web架构的相关文章

nginx+keepalived高可用

nginx+keepalived高可用 1.环境如下 lb-01:192.168.75.136/24  nginx+keepalived-master lb-02:192.168.75.137/24  nginx+keepalived-backup VIP:192.168.75.135/24   rs-01:192.168.75.133/24 apache rs-02:192.168.75.13424 apache lb操作系统centos7.rs操作系统ubuntu14.04 2.lb-01/

Nginx+Keepalived高可用负载均衡

转自 https://www.jianshu.com/p/da26df4f7d60 Keepalived+Nginx实现高可用Web负载均衡 Master 192.168.0.69 nginx.keepalived Centos7.4 backup 192.168.0.70 nginx.keepalived Centos7.4 vip(虚拟IP) 192.168.0.180 192.168.0.181 1.两台都安装nginx,参照安装nginx文档 2. 两台都安装Keepalived yum

Nginx+Keepalived高可用集群应用实践

Nginx+Keepalived高可用集群应用实践 1.Keepalived高可用软件 1.1 Keepalived服务的三个重要功能 1.1.1管理LVS负载均衡软件 早期的LVS软件,需要通过命令行或脚本实现管理,并且没有针对LVS节点的健康检查功能.为了解决LVS的这些使用不便问题,Keepalived诞生了,可以说,Keepalived软件起初是专为解决LVS的问题而诞生的.因此,Keepalived和LVS的感情很深,他们的关系如同夫妻一样,可以紧密地结合,愉快地工作.Keepaliv

安装配置keepalived2.0.18,实现nginx+keepalived高可用

一.环境服务器系统版本:CentOS 7两台服务器,一台做主节点,一台做备用节点:192.168.1.200(主节点)192.168.1.201(备用节点) 二.安装keepalived 2.0两台服务器都安装上 keepalived 2.0. 1.安装依赖包(libnl库-简化netlink 协议对象的实现.gcc-GNU编译器套件.openssl-devel-包含开发支持各种密码算法和协议的应用程序所需的文件的库包)#yum install -y libnl-devel libnl3-dev

Nginx+keepalived(高可用双主模式)

Nginx+keepalived(高可用双主模式) tips:前面已经介绍了nginx+keepalived高可用主从模式,今天补充下高可用的双主模式,均可以作为主机使用 server1:192.168.237.128             VIP1:192.168.237.10 server2:192.168.237.129             VIP2:192.168.237.20 vim /etc/keepalived/keepalived.conf //编辑配置文件,增加一段新的v

配置nginx+keepalived高可用负载均衡的时候。主从服务器都出现了VIP 阿里云问题

配置nginx+keepalived高可用负载均衡的时候.主从服务器都出现了VIP 出现这问题的场景是在阿里VPS云服务器网络环境中,因为路由交换层禁用了ARP的广播限制,造成KEEPALIVE主备协议无法通过广播的方式进行通信,造成主备两台服务器都强占HAVIP地址,出现同时两台服务器都有VIP地址的情况出现,必须通过配置来指定IP的两台服务器间进行通讯(阿里说明文档中解释只能支持两台使用同一个HAVIP地址),基于以下方法可以的情况下,多备方式用同样的方式也应该可行 ,有需要的兄弟可以测试下

分布式架构高可用架构篇_04_Keepalived+Nginx实现高可用Web负载均衡

一.场景需求 二.Keepalived 简要介绍 Keepalived 是一种高性能的服务器高可用或热备解决方案,Keepalived 可以用来防止服务器单点故障的发生,通过配合 Nginx 可以实现 web 前端服务的高可用. Keepalived 以 VRRP 协议为实现基础,用 VRRP 协议来实现高可用性(HA).VRRP(VirtualRouter Redundancy Protocol)协议是用于实现路由器冗余的协议,VRRP 协议将两台或多台路由器设备虚拟成一个设备,对外提供虚拟路

Nginx+keepalived高可用(双主模式)

负载均衡技术对于一个网站尤其是大型网站的web服务器集群来说是至关重要的!做好负载均衡架构,可以实现故障转移和高可用环境,避免单点故障,保证网站健康持续运行.由于业务扩展,网站的访问量不断加大,负载越来越高.现需要在web前端放置nginx负载均衡,同时结合keepalived对前端nginx实现HA高可用.介绍下Nginx和keepalive1.Nginx Nginx 是一个很强大的高性能Web和反向代理服务器,它具有很多非常优越的特性:Nginx作为负载均衡服务器:Nginx 既可以在内部直

Nginx+Keepalived高可用集群

1.Keepalived高可用软件 Keepalived软件起初是专为LVS负载均衡软件设计的,用来管理并监控LVS集群系统中各个服务节点的状态,后来又加入了可以实现高可用的VRRP功能.因此,keepalived除了能够管理LVS软件外,还可以作为其他服务的高可用解决方案软件. keepalived软件主要是通过VRRP协议实现高可用功能的.VRRP是Virtual  Router  Redundancy Protocol(虚拟路由冗余协议)的缩写,VRRP出现的目的就是为了解决静态路由的单点