Não é possível conectar-se ao banco de dados do mysql através dos meus servidores de proxy HA [O keepalived é usado para o IP-VIP virtual]

1

Eu tenho meu HAProxy em execução em VIP:192.168.61.32 , também verifiquei netstat -tulnp|grep 3306

 tcp    0    0   192.168.61.32:3306    0.0.0.0:*  LISTEN      7895/haproxy 

Mas quando eu corro

mysql -h 192.168.61.32 -u root -p:

ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0

Os nós de proxy HA estão em 192.168.61.30 & 192.168.61.31 & enquanto tento conectar ao DB

root@haproxy1:~# mysql -h 192.168.61.30 -u root -p
Enter password: 
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.61.30' (111)
root@haproxy1:~# mysql -h 192.168.61.31 -u root -p
Enter password: 
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.61.31' (111)

Meus nós do Mysql de back-end estão em 192.168.61.33 & 192.168.61.34, . É possível conectar-se a eles diretamente usando

mysql -h 192.168.61.33 -u root -p

mysql -h 192.168.61.34 -u root -p

Detalhes da configuração de haproxy.conf:

global
        log /dev/log    local0
#       log /dev/log    local1 notice
        chroot /var/lib/haproxy
        user haproxy
        group haproxy
        daemon
        log 192.168.61.31 local0
        stats socket /var/lib/haproxy/stats
        maxconn 4000

defaults
        log     global
#       mode    http
#       option  httplog
        option  dontlognull
        contimeout 5000
        clitimeout 50000
        srvtimeout 50000
        errorfile 400 /etc/haproxy/errors/400.http
        errorfile 403 /etc/haproxy/errors/403.http
        errorfile 408 /etc/haproxy/errors/408.http
        errorfile 500 /etc/haproxy/errors/500.http
        errorfile 502 /etc/haproxy/errors/502.http
        errorfile 503 /etc/haproxy/errors/503.http
        errorfile 504 /etc/haproxy/errors/504.http

listen stats 192.168.61.31:80
        mode http
        option  httplog
        stats enable
        stats uri /stats
        stats realm HAProxy\ Statistics
        stats auth admin:admin

listen galera 192.168.61.32:3306
               balance source
               mode tcp
               option tcpka
               option mysql-check user haproxy
               server mysql1 192.168.61.33:3306 check weight 1
               server mysql2 192.168.61.34:3306 check weight 1

Essa é a configuração do meu haproxy.conf no Segundo Servidor HA-Proxy, a primeira Configuração do Servidor HA-Proxy é a mesma, exceto para o Endereço IP em global & A seção de estatísticas é 192.168.61.30 [First HA-Proxy Server]

    
por karthik vee 19.09.2016 / 21:10

1 resposta

1

O erro que cometi foi usar Endereços IP incorretos dos meus Servidores HA-Proxy enquanto concedi privilégios no mysqldb, uma vez que eu dei Endereços IP corretos, funcionou sem nenhum problema.

    
por 20.09.2016 / 08:13