Mysql
 sql >> Datenbank >  >> RDS >> Mysql

php, mysql server ist weg

Ich gehe davon aus, dass Ihr Problem darin besteht, dass das Skript möglicherweise sehr lange ausgeführt wird, bevor die erste UPDATE-Abfrage gesendet wird.

Sie sollten den wait_timeout-Wert in my.cnf überprüfen. Sie können Ihr wait_timeout überprüfen, indem Sie die Abfrage "SHOW VARIABLES;"

ausführen

Sie können auch versuchen, ein Stück Code zu verwenden, um eine erneute Verbindung herzustellen:

if (!mysql_ping ($conn)) {
   //here is the major trick, you have to close the connection (even though its not currently working) for it to recreate properly.
   mysql_close($conn);
   $conn = mysql_connect('localhost','user','pass');
   mysql_select_db('db',$conn);
}

Kombiniert mit Ihrem Code wäre es:

mysql_connect("localhost", "xxx", "xxx") or die(mysql_error());
mysql_select_db("xxx") or die(mysql_error());
$sql = mysql_query("SELECT id FROM db");
while ($data = mysql_fetch_assoc($sql)) {
    if (!mysql_ping ()) {
       //here is the major trick, you have to close the connection (even though its not currently working) for it to recreate properly.
       mysql_close();
       mysql_connect("localhost", "xxx", "xxx") or die(mysql_error());
       mysql_select_db("xxx") or die(mysql_error());
    }

    $ids[] = $data['id'];
    $content = file_get_contents("http://www.id.com/?id=$id");
    if (stristr($content, "the id is ok man")) {
        mysql_query("UPDATE db SET status = 'OK' WHERE id = '$id'");
    }
}