设为首页 收藏本站
查看: 1450|回复: 0

[经验分享] nginx+ keepalived + haproxy 高性能

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2015-1-4 09:09:44 | 显示全部楼层 |阅读模式
haproxy简介:

HAProxy提供高可用性、负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是

免费、

快速并且可靠的一种解决方案。HAProxy特别适用于那些负载特大的web站点, 这些站点

通常又需要会话保持或七层处理。

HAProxy运行在当前的硬件上,完全可以支持数以万计的并发连接。

并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的

web服务器不被暴露到网络上。

实验环境

master haproxy+keepalived ip:192.168.1.129

slave  haproxy+keepalived ip :192.168.1.130

web  nginx                ip :192.168.1.131

#在安装keepalived 之前需要安装kerner-devel openssl-devel  popt-devel   

yum -y install kerner-devel openssl-devel  popt-devel

[iyunv@localhost ~]# tar xf keepalived-1.2.2.tar.gz -C /usr/src

[iyunv@localhost ~]# cd /usr/src/keepalived-1.2.2/

[iyunv@localhost keepalived-1.2.2]# ./configure --prefix=/ --with-kernerl-

dir=/usr/src/kernels/*

[iyunv@localhost keepalived-1.2.2]# make  

[iyunv@localhost keepalived-1.2.2]# make install

[iyunv@localhost keepalived-1.2.2]# cd

[iyunv@localhost ~]# vim /etc/keepalived/keepalived.conf

======================keepalived.conf===========================

! Configuration File for keepalived

global_defs {

   notification_email {

     acassen

   }

   notification_email_from Alexandre.Cassen@firewall.loc

   smtp_server 192.168.200.1

   smtp_connect_timeout 30

   router_id LVS_DEVEL

}

vrrp_instance VI_1 {

    interface eth0

    virtual_router_id 50

    nopreempt

    priority 100

    advert_int 1

    virtual_ipaddress {

        192.168.1.254 dev eth0

    }

}

virtual_server 192.168.1.254 80 {

    delay_loop 6

    lb_algo rr

    lb_kind NAT

    persistence_timeout 50

    protocol TCP

    real_server 192.168.1.132 80 {

        weight 1

        HTTP_GET {

            url {

              path /testurl3/test.jsp

              digest 640205b7b0fc66c1ea91c463fac6334d

            }

            connect_timeout 3

            nb_get_retry 3

            delay_before_retry 3

        }

    }

    real_server 192.168.1.133 80 {

        weight 1

        HTTP_GET {

            url {

              path /testurl3/test.jsp

              digest 640205b7b0fc66c1ea91c463fac6334d

            }

            connect_timeout 3

            nb_get_retry 3

            delay_before_retry 3

        }

    }

}

==========================keepalived.conf==========================

[iyunv@localhost ~]#

[iyunv@localhost ~]# service keepalived restart

Stopping keepalived:                                       [FAILED]

Starting keepalived:                                       [  OK  ]

#在master服务器上搭建haproxy+keepalived

[iyunv@localhost ~]# tar xf haproxy-1.4.22.tar.gz -C /usr/src

[iyunv@localhost ~]# cd /usr/src/haproxy-1.4.22/

[iyunv@localhost haproxy-1.4.22]# make TARGET=linux26

PREFIX=/usr/local/haproxy

#rr.o src/lb_map.o src/stream_interface.o src/dumpstats.o src/proto_tcp.o

src/session.o

#src/hdr_idx.o src/ev_select.o src/signal.o src/acl.o src/pattern.o

src/memory.o

#src/freq_ctr.o src/auth.o src/ev_poll.o src/ev_epoll.o src/ev_sepoll.o

#ebtree/ebtree.o ebtree/eb32tree.o ebtree/eb64tree.o ebtree/ebmbtree.o

#ebtree/ebsttree.o ebtree/ebimtree.o ebtree/ebistree.o   -lcrypt

[iyunv@localhost haproxy-1.4.22]#make install PREFIX=/usr/local/haproxy

install -d /usr/local/haproxy/sbin

install haproxy /usr/local/haproxy/sbin

install -d /usr/local/haproxy/share/man/man1

install -m 644 doc/haproxy.1 /usr/local/haproxy/share/man/man1

install -d /usr/local/haproxy/doc/haproxy

for x in configuration architecture haproxy-en haproxy-fr; do \

install -m 644 doc/$x.txt /usr/local/haproxy/doc/haproxy ; \

done

[iyunv@www haproxy-1.4.22]# cd /usr/local/haproxy/

[iyunv@www haproxy]# ls

doc  sbin  share

[iyunv@www haproxy]#

[iyunv@www haproxy]# mkdir conf

[iyunv@www haproxy]# cp /usr/src/haproxy-1.4.22/examples/haproxy.cfg

/usr/local/haproxy/conf/

====================================================

[iyunv@www haproxy]# vi /usr/local/haproxy/conf/haproxy.cfg

#32行以下全部删除了

#把以下行号修改下

    8         chroot /usr/share/haproxy  #  chroot /usr/local/haproxy    你安

装haproxy的路径

  #把 21 行 注释掉

  

  27   listen  appli1-rewrite 0.0.0.0:10001  #  listen  appli1-rewrite

192.168.1.129:80

  30         server  app1_1 192.168.34.23:8080 cookie app1inst1 check inter

20        00 rise 2 fall 5

# server  app1_1 192.168.1.130:80 cookie app1inst1 check

inter 20  





#listen  appli2-insert 0.0.0.0:10002    #从这里一下 都可以删除了

==============================    ================

  [iyunv@localhost ~]# ln -s /usr/local/haproxy/sbin/  /usr/local/sbin

  

  #在slave 上同上 安装  配置文件不同

  [iyunv@localhost ~]# vim /etc/keepalived/keepalived.conf

  ======================keepalived.conf===========================

  

! Configuration File for keepalived

global_defs {

   notification_email {

     acassen

   }

   notification_email_from Alexandre.Cassen@firewall.loc

   smtp_server 192.168.200.1

   smtp_connect_timeout 30

   router_id LVS_DEVEL

}

vrrp_instance VI_2 {

    start  SLAVE

    interface eth0

    virtual_router_id 50

    nopreempt

    priority 50

    advert_int 1

    virtual_ipaddress {

        192.168.1.254 dev eth0

    }

}

virtual_server 192.168.1.254 80 {

    delay_loop 6

    lb_algo rr

    lb_kind NAT

    persistence_timeout 50

    protocol TCP

    real_server 192.168.1.130 80 {

        weight 1

        HTTP_GET {

            url {

              path /testurl3/test.jsp

              digest 640205b7b0fc66c1ea91c463fac6334d

            }

            connect_timeout 3

            nb_get_retry 3

            delay_before_retry 3

        }

    }

    real_server 192.168.1.133 80 {

        weight 1

        HTTP_GET {

            url {

              path /testurl3/test.jsp

              digest 640205b7b0fc66c1ea91c463fac6334d

            }

            connect_timeout 3

            nb_get_retry 3

            delay_before_retry 3

        }

    }

}

========================keepalived.conf==============================

  

  

  [iyunv@localhost ~]# vim /usr/local/haproxy/conf/haproxy.cfg

  

  ========================haproxy.cfg==========================

  global

        log 127.0.0.1   local0

        log 127.0.0.1   local1 notice

        #log loghost    local0 info

        maxconn 4096

        chroot /usr/local/haproxy

        uid 99

        gid 99

        daemon

        #debug

        #quiet

defaults

        log     global

        mode    http

        option  httplog

        option  dontlognull

        retries 3

        #redispatch

        maxconn 2000

        contimeout      5000

        clitimeout      50000

        srvtimeout      50000

listen  appli1-rewrite 0.0.0.0:80

        cookie  SERVERID rewrite

        balance roundrobin

        server  app1_1 192.168.1.130:80 cookie app1inst1 check inter 2000

rise 2 fall 5

  

   ========================haproxy.cfg==========================

   

   

   

   

   

  

  #web   nginx 安装

  yum -y install pcre-devel zlib-devel

  

  useradd -M -s /sbin/nologin nginx

  

[iyunv@www ~]# tar xf nginx-1.6.2.tar.gz -C /usr/src

[iyunv@www ~]# cd /usr/src/nginx-1.6.2/

[iyunv@www nginx-1.6.2]# ./configure --prefix=/usr/local/nginx --user=nginx

--group=nginx --with-http_stub_status_module

[iyunv@www nginx-1.6.2]# make

[iyunv@www nginx-1.6.2]# make install

root@www nginx-1.6.2]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin

[iyunv@www ~]# nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

[iyunv@www ~]#

[iyunv@www ~]# echo "www.linux.com" > /usr/local/nginx/html/index.html

vim /usr/local/nginx/conf/nginx.conf

=======================nginx.conf==============================

user  nginx;

worker_processes  1;

error_log  logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

pid        logs/nginx.pid;

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '

                      '$status $body_bytes_sent "$http_referer" '

                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;

    sendfile        on;

    #tcp_nopush     on;

    #keepalive_timeout  0;

    keepalive_timeout  65;

    #gzip  on;

    server {

        listen       80;

        server_name  www.linux.com;

        charset utf-8;

        access_log  logs/nginx.access.log  main;

        location / {

            root   html;

            index  index.html index.htm;

        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html

        #

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80

        #

        #location ~ \.php$ {

        #    proxy_pass   http://127.0.0.1;

        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

        #

        #location ~ \.php$ {

        #    root           html;

        #    fastcgi_pass   127.0.0.1:9000;

        #    fastcgi_index  index.php;

        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

        #    include        fastcgi_params;

        #}

        # deny access to .htaccess files, if Apache's document root

        # concurs with nginx's one

        #

        #location ~ /\.ht {

        #    deny  all;

        #}

    }

    # another virtual host using mix of IP-, name-, and port-based

configuration

    #

    # HTTPS server

    #

    #server {

    #    listen       443 ssl;

    #    server_name  localhost;

    #    ssl_certificate      cert.pem;

    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;

    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;

    #    ssl_prefer_server_ciphers  on;

    #    location / {

    #        root   html;

    #        index  index.html index.htm;

    #    }

    #}

}

========================nginx.conf=====================================   

[iyunv@www ~]# nginx

[iyunv@www ~]# netstat -anpt |grep :80

tcp        0      0 0.0.0.0:80                  0.0.0.0:*                  

LISTEN      5794/nginx: master  

[iyunv@www ~]#

#最后所有的服务重启下  

master: service keepalived restart

  haproxy -f /usr/local/haproxy/conf/haproxy.cfg

slave :   service keepalived restart

  haproxy -f /usr/local/haproxy/conf/haproxy.cfg

  

  

  

  http://192.168.1.254


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-40116-1-1.html 上篇帖子: 强大的七层负载均衡方案haproxy.详解 下篇帖子: CentOS6.5编译安装varnish遇到的错误
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表