我有一个 Apache 服务器,它连接到 MySQL 数据库服务器。我收到很多错误消息说:
PHP 警告:mysqli::mysqli(): (HY000/2003): 无法连接到“10.0.0.13”上的 MySQL 服务器
但大多数时候,连接没有问题,而且我能够毫无问题地连接telnet 10.0.0.13 3306
。我如何找出问题所在?
源码是php脚本,大部分时间运行没有任何问题。这是我的连接方式:
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors','On');
date_default_timezone_set ('Europe/Copenhagen');
Header('Content-type: text/xml');
$conn = new mysqli('10.0.0.13','webuser', 'xxxxxx', "np_indexes");
有什么建议么?
此连接是否正确关闭?
$sql = "call spGetOrderDepthBySymbol('$stock', 0)";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) { ?>
<row>
<type static="true"></type>
<shares flash="true"><?= $row['shares']<>"" ? number_format($row['shares'], 0, ',', '.') : '-' ?></shares>
<price flash="true"><?= $row['price']<>"" ? number_format($row['price'], 2, ',', '.') : '-' ?></price>
</row>
<? }
?>
<spacer static="true"></spacer>
<?
$conn->next_result();
$sql = "call spGetOrderDepthBySymbol('$stock', 1)";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) { ?>
<row>
<type static="true"></type>
<shares flash="true"><?= $row['shares']<>"" ? number_format($row['shares'], 0, ',', '.') : '-' ?></shares>
<price flash="true"><?= $row['price']<>"" ? number_format($row['price'], 2, ',', '.') : '-' ?></price>
</row>
<? }
mysql_close($result);
?>