2017-06-01 73 views
0

我有一个MariaDB RDS设置在VPC中。 RDS不可公开访问。因此,为了访问RDS,我决定在相同的VPC中生成EC2并配置HAProxy。无法通过HaProxy连接到RDS

HAProxy的是工作的罚款,并侦听端口3306。然而,当我试图通过HAProxy的连接到RDS,我收到此错误信息:

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

这里是我的haproxy.cfg

global 
    log /dev/log local0 
    log /dev/log local1 notice 
    chroot /var/lib/haproxy 
    stats socket /run/haproxy/admin.sock mode 660 level admin 
    stats timeout 30s 
    user haproxy 
    group haproxy 
    daemon 

    # Default SSL material locations 
    ca-base /etc/ssl/certs 
    crt-base /etc/ssl/private 

    # Default ciphers to use on SSL-enabled listening sockets. 
    # For more information, see ciphers(1SSL). This list is from: 
    # https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/ 
    ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS 
    ssl-default-bind-options no-sslv3 

defaults 
    log  global 
    mode tcp 
    option tcplog 
    option dontlognull 
    timeout connect 5000 
    timeout client 50000 
    timeout server 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 rds 
    bind 0.0.0.0:3306 
    mode tcp 
    option mysql-check user haproxy_check 
    balance roundrobin 
    server rds test.dkd20slksdfkl.ap-southeast-1.rds.amazonaws.com:3306 check 

如果你想知道,我做编辑/etc/default/haproxy,并把ENABLED=1

回答

0

我设法通过删除check选项成功连接到RDS。我不知道为什么,但也许是因为没有其他RDS来负载均衡,因此check选项会带来问题。

+0

这表明检查没有成功,所以HAProxy接受传入连接并立即关闭它,因为没有可用的健康后端。使用'选项日志健康检查',检查你的HAProxy日志,或通过统计UI或统计套接字检查后端健康状况会使这个问题变得明显。 –

+0

感谢您的建议。到目前为止,连接是好的,我会继续监控。如果我再看到问题,我将启用运行状况检查日志。 –