HAProxy安装使用

1.下载并安装软件包

yum -y install make gcc pcre*

mkdir -p /data/app_platform/haproxy/conf/

useradd -r haproxy -s /sbin/nologin

wget http://www.haproxy.org/download/1.4/src/haproxy-1.4.26.tar.gz

tar zxvf haproxy-1.4.26.tar.gz

cd haproxy-1.4.26

make TARGET=linux26 PREFIX=/data/app_platform/haproxy/

make install PREFIX=/data/app_platform/haproxy/

2.添加配置文件

/data/app_platform/haproxy/conf/haproxy.cfg

global
    chroot      /data/app_platform/haproxy/share/ 
    log         127.0.0.1 local3 info
    daemon      
    user        haproxy
    group       haproxy
    pidfile     /var/run/haproxy.pid
    nbproc      1                       
    stats socket  /tmp/haproxy level admin
    stats maxconn 20                    
    node        master_loadbalance1
    description xxxx
    maxconn     65536
    nosplice                            
    spread-checks 3                     

defaults
    option httpchk  GET /php-fpm_status
    log         global                  
    mode http
    option httpclose
    option abortonclose         
    no option accept-invalid-http-response
    option allbackups           
    #option http-server-close                   
    #option httplog                     
    #option log-health-checks            
    #option tcp-smart-connect            
    option tcpka                        
    option redispatch
    option forwardfor except 127.0.0.1  
    retries 3   
    timeout check 60s                   
    timeout connect 600s                 
    timeout http-keep-alive 600s         
    timeout http-request 600s            
    timeout queue 600s                   
    timeout server 600s                  
    timeout tarpit 60s
    timeout client 600s                          

frontend  game_pool 0.0.0.0:80
    mode http
    no option accept-invalid-http-request
    option http-server-close
    log         global
    option log-separate-errors
    #option forwardfor except 127.0.0.1 header X-Real-IP
    option forwardfor except 127.0.0.1
    #     acl path_web_inf     path_beg       -i    /WEB-INF
    # block if path_web_inf
     acl game_url      hdr_reg(host) -i   ^(s\d*.xxxx.com|s\d*.xxx.com|s\d*.xxx.com|s\d*.xxx.com)$	

backend game_pool
    mode http
    balance     roundrobin
    cookie  SERVERID insert indirect
#    http-check disable-on-404
#    http-check send-state
#    option httpchk  GET /check.php HTTP/1.1\r\nHost:\ example.com
    default-server inter 2s fastinter 1s downinter 5s slowstart 60s rise 2 fall 5 weight 30

    server  xxx-taiwan-game1  192.168.1.183:80 cookie xxx-taiwan-game1_80 check maxconn 2000
    server  xxx-taiwan-game2  192.168.1.184:80 cookie xxx-taiwan-game2_80 check maxconn 2000

listen monitor1 0.0.0.0:10443
    mode http
    balance     roundrobin
    stats enable
    stats uri /nc-haproxy              # - default is haproxy?stats
    stats realm Haproxy\ statistics    # - Enable statistics and set authentication realm
    stats show-desc example gintama-taiwan-lb1 status page
    stats auth ncadmin:taiwan
    stats refresh 30s
    stats show-legends                 # - Enable reporting additional informations on the statistics page
    timeout check 10s
    timeout client 45s
    timeout connect 45s
    timeout http-keep-alive 45s
    timeout http-request 45s
    timeout queue 45s
    timeout server 45s
    timeout tarpit 45s

3.添加启动脚本

#!/bin/sh
#
# haproxy
#
# chkconfig:   - 85 15
# description:  HAProxy is a free, very fast and reliable solution #               offering high availability, load balancing, and #               proxying for TCP and  HTTP-based applications
# processname: haproxy
# config:      /data/app_platform/haproxy/conf/haproxy.cfg
# pidfile:     /var/run/haproxy.pid

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0

exec="/data/app_platform/haproxy/sbin/haproxy"
prog=$(basename $exec)
conf_file="/data/app_platform/haproxy/conf/haproxy.cfg"

[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog

lockfile=/var/lock/subsys/haproxy

check() {
    $exec -c -V -f $conf_file
}

start() {
    $exec -c -q -f $conf_file
    if [ $? -ne 0 ]; then
        echo "Errors in configuration file, check with $prog check."
        return 1
    fi
 
    echo -n $"Starting $prog: "
    # start it up here, usually something like "daemon $exec"
    daemon $exec -D -f $conf_file -p /var/run/$prog.pid
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    # stop it here, often "killproc $prog"
    killproc $prog 
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    $exec -c -q -f $conf_file
    if [ $? -ne 0 ]; then
        echo "Errors in configuration file, check with $prog check."
        return 1
    fi
    stop
    start
}

reload() {
    $exec -c -q -f $conf_file
    if [ $? -ne 0 ]; then
        echo "Errors in configuration file, check with $prog check."
        return 1
    fi
    echo -n $"Reloading $prog: "
    $exec -D -f $conf_file -p /var/run/$prog.pid -sf $(cat /var/run/$prog.pid)
    retval=$?
    echo
    return $retval
}

force_reload() {
    restart
}

fdr_status() {
    status $prog
}

case "$1" in
    start|stop|restart|reload)
        $1
        ;;
    force-reload)
        force_reload
        ;;
    check)
        check
        ;;
    status)
        fdr_status
        ;;
    condrestart|try-restart)
  	[ ! -f $lockfile ] || restart
	;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|try-restart|reload|force-reload}"
        exit 2
esac

4.添加日志输出

/etc/rsyslog.d/haproxy.conf

local3.* /var/log/haproxy.log
$ModLoad imudp
$UDPServerAddress 127.0.0.1
$UDPServerRun 514

service rsyslog restart

5.启动HAProxy

service haproxy start

tail -f /var/log/haproxy.log 
Feb  9 17:43:53 127.0.0.1 haproxy[25770]: backend game_pool has no server available!
Feb  9 17:44:02 127.0.0.1 haproxy[25810]: Proxy game_pool started.
Feb  9 17:44:02 127.0.0.1 haproxy[25810]: Proxy game_pool started.
Feb  9 17:44:02 127.0.0.1 haproxy[25810]: Proxy monitor1 started.
Feb  9 17:44:03 127.0.0.1 haproxy[25828]: Proxy game_pool started.
Feb  9 17:44:03 127.0.0.1 haproxy[25828]: Proxy game_pool started.
Feb  9 17:44:03 127.0.0.1 haproxy[25828]: Proxy monitor1 started.
Feb  9 17:44:05 127.0.0.1 haproxy[25829]: Server game_pool/xxx-taiwan-game1 is DOWN, reason: Layer4 timeout, check duration: 2001ms. 1 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.
Feb  9 17:44:05 127.0.0.1 haproxy[25829]: Server game_pool/xxx-taiwan-game2 is DOWN, reason: Layer4 timeout, check duration: 2001ms. 0 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.
Feb  9 17:44:05 127.0.0.1 haproxy[25829]: backend game_pool has no server available!

6.设置HAProxy开机启动

chkconfig --level 35 haproxy on

时间: 2024-10-15 09:10:03

HAProxy安装使用的相关文章

haproxy 安装部署文档

HAProxy提供高可用性.负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费.快速并且可靠的一种解决方案.HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理.HAProxy运行在当前的硬件上,完全可以支持数以万计的并发连接.并且它的运行模式使得它可以很简单安全的整合进您当前的架构中,同时可以保护你的web服务器不被暴露到网络上. haproxy 配置中分成五部分内容,分别如下:1.global:参数是进程级的,通常是和操作系统相关.这些参数一

Linux(CentOS)— HAProxy安装与配置

Haproxy下载地址:http://pkgs.fedoraproject.org/repo/pkgs/haproxy/ 一.关闭SElinux.配置防火墙 1.vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq!  #保存退出 setenforce 0 #使配置立即生效 2.vi /etc/sysconfig/iptables  #编辑 -A RH-

Haproxy安装及配置(转)

1.安装 # wget http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.20.tar.gz # tar zcvf haproxy-1.3.20.tar.gz # cd haproxy-1.3.20 # make TARGET=linux26 PREFIX=/usr/local/haproxy                                #将haproxy安装到/usr/local/haproxy # make install

haproxy 安装与配置以及遇到的问题

1,安装配置过程:两台haproxy安装配置过程一样 #cd /usr/local/src #wget http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.24.tar.gz #tar xf haproxy-1.4.24.tar.gz #cd haproxy-1.4.24 #make TARGET=linux26 ARCH=x86_64 #TARGET是指定内核版本,ARCH指定CPU架构,我使用的是64bit系统 #make install 2

CentOS7—HAProxy安装与配置

概述 Haproxy下载地址:http://pkgs.fedoraproject.org/repo/pkgs/haproxy/ 关闭SElinux.配置防火墙 1.vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq!  #保存退出 setenforce 0 #使配置立即生效 2.vi /etc/sysconfig/iptables  #编辑 -A RH

haproxy 安装与配置文件详解

本文主要阐述haproxy的安装配置详解,对于它的概念,作用,功能,和其它LB软件的区别,优点,缺点等不再进行说明. 一. haproxy 的安装配置 # cat /etc/redhat-release CentOS release 6.6 (Final) # uname -r 2.6.32-504.el6.i686 # tar xf haproxy-1.3.20.tar.gz # cd haproxy-1.3.20 #  make  TARGET=linux26  PREFIX=/usr/lo

Haproxy安装及配置

1.安装 # wget http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.20.tar.gz # tar zcvf haproxy-1.3.20.tar.gz # cd haproxy-1.3.20 # make TARGET=linux26 PREFIX=/usr/local/haproxy #将haproxy安装到/usr/local/haproxy # make install PREFIX=/usr/local/haproxy 2.配置

【转】Haproxy安装及配置

1.安装 # wget http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.20.tar.gz # tar zcvf haproxy-1.3.20.tar.gz # cd haproxy-1.3.20 # make TARGET=linux26 PREFIX=/usr/local/haproxy                                #将haproxy安装到/usr/local/haproxy # make install

负载均衡-haproxy安装配置

HAProxy提供高可用性.负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费.快速并且可靠的一种解决方案.HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理.HAProxy运行在当前的硬件上,完全可以支持数以万计的并发连接.并且它的运行模式使得它可以很简单安全的整合进您当前的架构中,同时可以保护你的web服务器不被暴露到网络上.    haproxy 配置中分成五部分内容,分别如下:1.global:参数是进程级的,通常是和操作系统相关.这些

Haproxy 安装与配置

一 Haproxy简介 一.HAProxy简介 HAProxy提供高可用性.负载均衡以及基于TCP和HTTP应用的代理,支持虚拟主机,它是免费.快速并且可靠的一种解决方案.HAProxy特别适用于那些负载特大的web站点,这些站点通常又需要会话保持或七层处理.HAProxy运行在时下的硬件上,完全可以支持数以万计的并发连接.并且它的运行模式使得它可以很简单安全的整合进您当前的架构中, 同时可以保护你的web服务器不被暴露到网络上. HAProxy实现了一种事件驱动.单一进程模型,此模型支持非常大