码迷,mamicode.com
首页 > 其他好文 > 详细

haproxy安装配置

时间:2014-12-01 11:21:17      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

1.安装
wget http://download.chinaunix.net/download.php?id=25784&ResourceID=12508
bubuko.com,布布扣
tar -zxvf haproxy-1.3.15.10.tar.gz
cd haproxy-1.3.15.10
make TARGET=linux26 PREFIX=/usr/local/haproxy  (#将haproxy安装到/usr/local/haproxy)
make install PREFIX=/usr/local/haproxy
cd /usr/local/haproxy
vi haproxy.cfg

2.配置

安装完毕后,进入安装目录配置文件,默认情况下目录里是没有.cfg配置文件的,可以回到安装文件目录下将examples下的haproxy.cfg拷贝到usr/local/haproxy下。

haproxy.cfg的内容如下:

# cd /usr/local/haproxy

# vi haproxy.cfg

global
    maxconn 51200
    chroot /usr/local/haproxy
    uid 99
    gid 99
    daemon
    #quiet
    nbproc 1
    pidfile /usr/local/haproxy/logs/haproxy.pid
 
defaults
        mode http
        #retries 2
        option redispatch
        option abortonclose
        timeout connect 5000ms
        timeout client 30000ms
        timeout server 30000ms
        #timeout check 2000
        log 127.0.0.1 local0 err #[err warning info debug]
        balance roundrobin
# option httplog
# option httpclose
# option dontlognull
# option forwardfor
 
listen admin_stats
        bind 0.0.0.0:8888
        option httplog
        stats refresh 30s
        stats uri /stats
        stats realm Haproxy Manager
        stats auth admin:admin
        #stats hide-version
 
listen test1
        bind :12345
        mode tcp
        server t1 127.0.0.1:8881
        server t2 192.168.1.102:8881
 
listen test2 :80
       option httpclose
       option forwardfor
        server s1 127.0.0.1:8081 check weight 1 minconn 1 maxconn 3 check inter 40000
        server s2 127.0.0.1:8082 check weight 1 minconn 1 maxconn 3 check inter 40000
 
3.启动Haproxy
[root@node3 haproxy]# /usr/local/haproxy/sbin/haproxy -f /usr/local/haproxy/haproxy.cfg
[root@node3 app]# ps -ef |grep haproxy |grep -v grep
root      6950     1  0 19:35 ?        00:00:00 /usr/local/haproxy/sbin/haproxy -f /usr/local/haproxy/haproxy.cfg

访问:http://192.168.2.150:8888/stats
bubuko.com,布布扣
 
 
4.测试:
由于我们把环回接口绑定127.0.0.1:8081端口到本机127.0.0.1:80端口上,
我们上次安装的httpd,绑定的是127.0.0.1:8081
http://www.cnblogs.com/super-d2/p/4134467.html
访问http://192.168.2.137:8081/可看到这个
bubuko.com,布布扣
而没配置haproxy之前,我们访问http://192.168.2.137:80/是访问不到的,因为这个端口80上没有这项服务;
bubuko.com,布布扣
bubuko.com,布布扣
如果现在我们启动haproxy的话,
bubuko.com,布布扣
再次访问:
bubuko.com,布布扣
 
可以通过通过haproxy我们实现了代理访问
http://192.168.2.137:80/
 
 
 
 

haproxy安装配置

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/super-d2/p/4134562.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!