1.安装HAProxy

# yum install haproxy


2. 修改配置文件

# vim /etc/haproxy/haproxy.cfg


3.编辑配置文件内容:

global
        ulimit-n  51200

defaults
        log     global
        mode    tcp
        option  dontlognull
        contimeout 10000
        clitimeout 150000
        srvtimeout 150000

# 前端请求拦截
frontend frontend1
        bind *:8888
        default_backend backend1	#和后端转发地址对应

# 后端转发地址 1
backend backend1
        server server1 127.0.0.1:8080 maxconn 20480

# 后端转发地址 2		
backend backend2
        server server1 127.0.0.1:9080 maxconn 20480

4. 启动服务

# service haproxy start


5. 关闭服务

service haproxy stop




Logo

更多推荐