我正在使用php mongoclient类连接mongodb远程主机。
我只写了简单的连接代码。

$connection_url = "mongodb://{$dbuser}:{$dbpass}@{$dburl}:{$dbport}/{$dbname}";
$this->m = new MongoClient($connection);

它确实连接到MongoDB,但一段时间后,我的应用程序挂起,挂起的意思是PHPSRIPT永远运行,没有响应,最后Apache和我的服务器崩溃。我需要重新启动服务器才能重新启动。
为什么php脚本永远运行而mongoserver没有响应。
我已设置为30秒。
Mongoclient版本1.4.5
更新:
如前所述here
MongoDB的默认连接和套接字超时是never time out,我猜,如果从MongoServer端关闭套接字,可能是PHPmongoclient永远在等待。
为了确保我为mongoclient设置了选项,使其在套接字关闭时不会等待超过5秒,如下所示
$connection_url = "mongodb://{$dbuser}:{$dbpass}@{$dburl}:{$dbport}/{$dbname}";
$options = array('connectTimeoutMS' =>5000 , 'socketTimeoutMS' => 5000);
$this->m = new MongoClient($connection, $options);

但这个还挂着
这是短的Mongo日志
2:4:找到连接
somehost;-;dbname/user/fd6da21ee7cf37731eb88e250d4a05d6;1957(查找
对于somehost;-;dbname/用户名/fd6da21ee7cf37731eb88e250d4a05d6;1957)
2:2:mongo_get_read_write_连接:查找独立连接
2:4:找到连接
主机;-;dbname/username/fd6da21ee7cf37731eb88e250d4a05d6;1957(查找
对于主机名;-;dnname/user/fd6da21ee7cf37731eb88e250d4a05d6;1957)
2:2:是不是平:平
主机名;-;dbname/用户名/fd6da21ee7cf37731eb88e250d4a05d6;1957
“is_ping”后没有日志。这意味着我的剧本挂在这里。
更新:
以下是挂起时使用和运行的进程
ps aux | sort -rk 3,3 | head -n 20
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
www-data 32612  0.0  1.1 108372  5604 ?        S    11:05   0:00 /usr/sbin/apache2 -k start
www-data 32390  0.0  1.1 108372  5604 ?        S    11:04   0:00 /usr/sbin/apache2 -k start
www-data 32389  0.0  1.4 109192  7348 ?        S    11:00   0:00 /usr/sbin/apache2 -k start
www-data 32388  0.0  1.4 109192  7376 ?        S    11:00   0:00 /usr/sbin/apache2 -k start
www-data 32387  0.0  1.4 109192  7376 ?        S    11:00   0:00 /usr/sbin/apache2 -k start
www-data 32386  0.0  1.2 108412  6100 ?        S    11:00   0:00 /usr/sbin/apache2 -k start
www-data 32385  0.0  1.8 111692  9432 ?        S    11:00   0:00 /usr/sbin/apache2 -k start
www-data 31833  0.0  1.5 109216  7548 ?        S    02:35   0:00 /usr/sbin/apache2 -k start
www-data 31173  0.0  1.5 108824  7872 ?        S    Mar02   0:00 /usr/sbin/apache2 -k start
www-data 15538  0.0  1.5 109216  7664 ?        S    Mar02   0:00 /usr/sbin/apache2 -k start
www-data 15536  0.0  1.4 109200  7496 ?        S    Mar02   0:00 /usr/sbin/apache2 -k start
www-data 15535  0.0  1.6 110904  8444 ?        S    Mar02   0:00 /usr/sbin/apache2 -k start
www-data 15534  0.0  1.3 108684  6536 ?        S    Mar02   0:00 /usr/sbin/apache2 -k start
whoopsie   847  0.0  0.5 187668  2676 ?        Ssl  Feb24   0:00 whoopsie
syslog     370  0.0  0.6 249676  3060 ?        Sl   Feb24   0:31 rsyslogd -c5
root       984  0.0  0.1  15792   908 tty1     Ss+  Feb24   0:00 /sbin/getty -8 38400 tty1
root       946  0.0  2.0 108348 10120 ?        Ss   Feb24   0:32 /usr/sbin/apache2 -k start
root         9  0.0  0.0      0     0 ?        S    Feb24   0:00 [rcu_bh]
root       879  0.0  0.0      0     0 ?        S<   Feb24   0:00 [kvm-irqfd-clean]

最佳答案

听起来像是硬件问题或MongoDB问题,如果有挂起的PHP脚本,服务器不需要重新启动…
但是,您可以尝试将用户名密码数据库添加到如下选项:

function __construct($host, $username, $password, $db){
    $this->client = new MongoClient("mongodb://" . $host, array('username' => $username, 'password' => $password, 'db' => $db));
    $this->db = $this->client->selectDB($db);
}

关于php - MongoClient PHP sript永远运行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22013805/

10-11 07:23