HaProxy配置

安裝

http://www.cnblogs.com/wang1988ming/archive/2012/10/24/2737507.htmlhtml

 

配置

global
        log 127.0.0.1   local0 info    #日誌相關
        log 127.0.0.1   local1 notice
        maxconn 4096
        chroot /usr/local/haproxy
        uid root
        gid root
        daemon
        #debug
        #quiet
        pidfile /usr/local/haproxy/haproxy.pid

defaults
        log     global
        mode    http
        #option httplog
        option  dontlognull
        retries 3
        option redispatch
        maxconn         2000
        contimeout      5000
        clitimeout      50000
        srvtimeout      50000

listen  mysql
        bind 0.0.0.0:23306    #代理端口
        mode tcp              #模式 TCP
        option mysql-check user haproxy   #mysql健康檢查  root爲mysql登陸用戶名
        balance roundrobin            #調度算法
        server mysql1 192.168.18.1:3306 weight 1 check  inter 1s rise 2 fall 2 #健康檢查加上check
        server mysql2 192.168.18.1:3307 weight 1 check  inter 1s rise 2 fall 2
listen stats     #監控
           mode http
           bind 0.0.0.0:8888
           stats enable
           stats uri /dbs
           stats realm Global\ statistics
           stats auth admin:admin

 

docker 參考:https://yq.aliyun.com/articles/664130mysql

相關文章
相關標籤/搜索