开发者

Why am I getting mysql_connect(): Lost connection to MySQL server and how can I fix it?

开发者 https://www.devze.com 2023-03-24 12:12 出处:网络
My php code fails to connect to the mysql database on my web server. I get the following error: mysql_connect(): Lost connection to MySQL server at \'reading initial

My php code fails to connect to the mysql database on my web server. I get the following error:

mysql_connect(): Lost connection to MySQL server at 'reading initial communication packet', system error: 110 in filename at line 71.

The same code works fine when run from my development machine pointed at the mysql database on the server I'm trying to run this from (I copied the file up to the server and I'm trying to run it via ssh on that server). I have verified that the mysql user in the script can connect to the database from the server by running mysql from the ssh command line on that server using the same user name and password as specified in my php script.

here is my code:

function jsw_set_cnxn($env){
        global $env;
        $cnxn =开发者_开发问答 mysql_connect($env['db_svr'], $env['db_usr'], $env['db_pwd']) 
               or die ('DB Connection Error: ' . mysql_error());
        mysql_select_db ($env['db'], $cnxn);
    return $cnxn;
}


I've seen this error caused when using the servers IP address when it expects localhost as the server address.

This is because the server is the machine mysql expects but the wrong host coming in. Try using localhost.

0

精彩评论

暂无评论...
验证码 换一张
取 消