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
|
feedback
|
|
You might want to check your /etc/hosts.deny where:
or
is your enemy. | |||||
feedback
|
|
check from that host
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. | |||
|
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/ | |||
|
feedback
|
|
You need to edit your mysql Configuration file, by default the Open: Change the | |||
|
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 | |||
|
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? | |||
|
feedback
|