CentOS 7通过haproxy代理mysql

       在内Linux服务器A上部署Mysql,由于本地网络与服务器网络不能互通,因此如何在本地用客户端访问该服务器的Mysql呢?有以下两种方案:
第一种:在服务器A上绑定一个浮动IP,通过浮动IP来进行访问
第二种:在服务器B上绑定一个浮动IP,在通过haproxy将mysql代理出来。

这里主要讲解第二种方案的实现:
1、在服务器B上安装haproxy
2、在服务器B上绑定浮动IP,使本地与服务器B互通
3、编辑haproxy.cfg文件,增加一下配置:

listen mysql
        bind 0.0.0.0:7306
        mode tcp
        balance roundrobin
        server mysql1 192.168.100.100:3306    
        server mysql2 192.168.100.101:3306

4、重启haproxy服务:systemctl restart haproxy

问题1:启动haproxy服务时,出现错误 haproxy cannot bind socket [0.0.0.0:7306]

解决方法:setsebool -P haproxy_connect_any=1

你可能感兴趣的:(CentOS 7通过haproxy代理mysql)