ERROR 2013 (HY000): Lost connection to MySQL server at 'reading authorization packet', system error: 0
f5, load-balancing, mysql
Solution
From documentation:
More rarely, it can happen when the client is attempting the initial connection to the server. In this case, if your connect_timeout value is set to only a few seconds, you may be able to resolve the problem by increasing it to ten seconds, perhaps more if you have a very long distance or slow connection. You can determine whether you are experiencing this more uncommon cause by using SHOW STATUS LIKE 'aborted_connections'. It will increase by one for each initial connection attempt that the server aborts. You may see “reading authorization packet” as part of the error message; if so, that also suggests that this is the solution that you need.
Try increasing connect_timeout in your my.cnf file
Another style:
MySQL: Lost connection to MySQL server at 'reading initial communication packet'
At some point, it was impossible for remote clients to connect to the MySQL server.
The client (some application on a Windows platform) gave a vague description like `Connection unexpectedly terminated`.
When remotely logging in with the MySQL client the following error appeared:
`ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0`
On FreeBSD this happens because there was no match found in `/etc/hosts.allow.` Adding the following line before the line saying `ALL:ALL` fixes this:
mysqld: ALL: allow
On non-FreeBSD Unix systems, it is worth to check the files `/etc/hosts.allow` and `/etc/hosts.deny.` If you are restricting connections, make sure this line is in `/etc/hosts.allow`:
mysqld: ALL
or check if the host is listed in `/etc/hosts.deny.`
In Arch Linux, a similar line can be added to `/etc/hosts.allow`:
mysqld: ALL
Problem
I am getting the following error ``` ERROR 2013 (HY000): Lost connection to MySQL server at 'reading authorization packet', system error: 0 ``` when trying to connect to my MySQL server. What I am doing: - I have Master - Slave replication in MySQL that is working and just added load balance capabilities using F5. - I have configured the F5 according to their site. But when I am trying to connect to my MySQL server using the IP that the F5 was configured with I get ``` ERROR 2013 (HY000): Lost connection to MySQL server at 'reading authorization packet', system error: 0 ``` Any ideas? Update on my progress : ZERO - i am getting the same error I get no entries in the /var/log/secure as if somebody would try to authenticate coming form the ip where i had created my load balance server. No enties in the mysql error log. The command - returns nothing ``` mysql> SHOW GLOBAL STATUS LIKE 'Aborted_connections'; Empty set (0.00 sec) ``` I've already altered my `my.cnf` file and add the ``` [mysqld] skip-name-resolve ``` Alterd the `connect_timeout` to 10. So it seems i get no response for the server i have created on my F5 I finally convinced the F5 admin to pass me the log for the F5 server and i have exctraced all i need form it. Here is the output : ``` Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <CLIENT_ACCEPTED>: BIG-IP MySQL Proxy -- clientside initial connection Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <CLIENT_ACCEPTED>: BIG-IP MySQL Proxy -- clientside responding with server WELCOME packet Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <CLIENT_DATA>: BIG-IP MySQL Proxy -- clientside authenticated flag not set Jan 28 15:46:39 tmm err tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <CLIENT_DATA>: BIG-IP MySQL Proxy -- mysql client: attempting to do something before authentication Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <LB_SELECTED>: BIG-IP MySQL Proxy -- serverside selected pool /Common/foss-mysql-slave_pool node SLAVE-IP Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <CLIENT_CLOSED>: BIG-IP MySQL Proxy -- clientside connection closed from MASTER-IP(XXXXXXX) Jan 28 15:46:39 tmm debug tmm[6459]: Rule /Common/iRule-f5_mysql_proxy <SERVER_CLOSED>: BIG-IP MySQL Proxy -- serverside connection closed from node SLAVE-IP(XXXXXXXX) ``` I've replaced the ip for security sake ! just as an extra - and i think is here the problem - my mysql version is 5.1.69-log Thx All