tags:

views:

405

answers:

3
+1  Q: 

MySQL error 2013

Hi to all,

In MySQL, how can I solve the error below?

2013: Lost connection to MySQL server at 'reading authorization packet', system error: 0

Regards, Babu.

+3  A: 

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

Quassnoi
A: 

Check your my.cnf file. set the bind-address to the server's actual IP address.

Dennis Day
A: 

Take a look at your mysqld log file - there's a high chance 'show status' crashes MySQL for some reason.

Saggi Malachi