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

不管,干一个HAPROXY先

时间:2015-06-13 19:59:11      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

说不定要用到的塞。。。。

1.wget http://www.haproxy.org/download/1.5/src/haproxy-1.5.12.tar.gz

2.tar -zxvf haproxy-1.5.12.tar.gz

3.cd haproxy-1.5.12

4.make TARGET=linux26 PREFIX=/usr/local/haproxy install

5.mkdir -p /usr/local/haproxy/{conf,logs}

6.vim /usr/local/haproxy/conf/haproxy.cfg

  

global
        log 127.0.0.1 local0 info #[err warning info debug]
        maxconn 4096
        user root
        group root
        daemon
        nbproc 4
        pidfile /usr/local/haproxy/logs/haproxy.pid
defaults
        maxconn 2000
        timeout connect 5000
        timeout client 30000
        timeout server 30000
listen admin_stats
        bind 0.0.0.0:1080
        mode http
        log 127.0.0.1 local0 err
        stats uri /admin?stats

7.sbin/haproxy -f conf/haproxy.cfg

 

8.当当当当。。。

 

其它配置深入,再议哈

技术分享

不管,干一个HAPROXY先

标签:

原文地址:http://www.cnblogs.com/aguncn/p/4573832.html

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