up vote 8 down vote favorite
1
share [g+] share [fb]

I am running a Rails app so now I am trying to remote connect to mysql and I am getting this error Could not connect: Lost connection to MySQL server at 'reading initial communication packet', system error: 0

link|improve this question

0% accept rate
feedback

8 Answers

You might want to check your /etc/hosts.deny where:

ALL: ALL: DENY

or

mysqld: ALL: DENY

is your enemy.

link|improve this answer
This solved it. Was the last barrier after fixing my.cnf and forwarding 3306. – f1sh May 12 '10 at 7:40
Add this to your /etc/hosts.allow to fix the problem: mysqld: ALL You may allow just clients coming from some network like this: mysqld: 192.168.1.0/255.255.255.0 – Kamil Szot Dec 7 '10 at 21:08
feedback

check from that host

shell> telnet IP 3306

If MySQL is up and reachable you'll see mysql version in telnet output. Otherwise check firewall, etc until telnet succeeds.

Then I advice you first connect with native mysql client to exclude Rails from problem aria.

link|improve this answer
feedback

Thank you guys for your effort, I have found the solution, I was suppose to set Remote Connection to MySQLhere is the link for someone who got the same error http://benrobb.com/2007/01/15/howto-remote-root-access-to-mysql/

link|improve this answer
feedback

You need to edit your mysql Configuration file, by default the bind-adress is set to 127.0.0.1.

Open: /etc/mysql/my.cnf

Change the bind-adress to the ip you are going to use to connect yoursef to the database server.

link|improve this answer
Hey I changed that but still the problem didn't solve. – Madhup May 15 '10 at 12:03
feedback

Enable remote access

The MySQL server does not listen on the TCP port 3306 by default. To allow (remote) TCP connections, comment the following line in /etc/mysql/my.cnf:

skip-networking

Remember to edit /etc/hosts.allow by adding the following lines:

mysqld: ALL : ALLOW

mysqld-max: ALL : ALLOW

link|improve this answer
feedback

mysqld-max: ALL : ALLOW solved the problem for me

link|improve this answer
feedback

"Lost connection to MySQL server at ‘reading initial communication packet’, system error: 0" is the client side error message. Do you have access to the server logs, both the mysqld logs and syslog?

link|improve this answer
feedback

Rebooting the server worked for me. No settings changes needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.