zoukankan      html  css  js  c++  java
  • 安装 haproxy

    安装 haproxy

    yum install haproxy

     

    配置 haproxy 后台管理

    vi /etc/haproxy/haproxy.cfg

     

    后台监控

    listen statspage

        bind *:8888   

        stats enable 

        stats hide-version  

        stats uri /admin?stats   

        #stats auth xiao:linux   

        #stats admin if TRUE 

    listen  mysql

            bind 0.0.0.0:23306    #代理端口

            mode tcp              #模式 TCP

            #option mysql-check user root   #mysql健康检查  root为mysql登录用户名

            balance roundrobin            #调度算法

            server mysql1 192.168.175.131:3306 check port 3306 maxconn 300

            server mysql2 192.168.175.132:3306 check port 3306 maxconn 300

     

     

    注释掉http相关选项

    #   option                  httplog

    #   option http-server-close

    #   option forwardfor       except 127.0.0.0/8

    #   timeout http-request    10s

     

     

     

    启动 haproxy

    /usr/sbin/haproxy -f /etc/haproxy/haproxy2.cfg

  • 相关阅读:
    执行.class文件
    Ant能干什么,编译?打包!
    C的随想
    微服务
    2018年宝鸡市高考复课报告会材料
    用图像解不等式
    高频易错题目01
    2018年宝鸡市二检数学题目解答
    点差法
    和事件的概率求法
  • 原文地址:https://www.cnblogs.com/jlx1/p/5333128.html
Copyright © 2011-2022 走看看