码迷,mamicode.com
首页 > 数据库 > 详细

mongodb连接失败原因排查

时间:2014-09-29 10:25:57      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   数据   sp   2014   问题   

安装了mongodb,添加了管理员root和test数据库的用户rex,并且开启的用户认证。

按照说明文档连接mongodb数据库:$mongo = new Mongo("mongodb://rex:123456@localhost");

结果开启firebug之后发现报错:"NetworkError: 500 Internal Server Error - http://192.168.202.132/montest.php"

在这里尝试了很多方法都无法解决,也不清楚为什么出了错,只能再看一遍php的官方文档(http://php.net/manual/zh/mongoclient.construct.php)

偶然看到这么一句:如果给出的主机都无法连接,将会抛出 MongoConnectionException 异常。

于是我开始尝试打印这个异常:

try {   
  $mongo = new Mongo("mongodb://rex:748793@localhost"); 
} catch (Exception $e) {   
  print $e->getMessage();   
  exit();   
} 

输出结果是:Failed to connect to: localhost:27017: Authentication failed on database ‘admin‘ with username ‘rex‘: auth failed

一看便知:rex是test数据库的用户,可是代码确实默认连接数据库admin,问题就出在这里!

于是改成:$mongo = new Mongo("mongodb://rex:123456@localhost/test");

问题解决!


mongodb连接失败原因排查

标签:blog   http   io   os   ar   数据   sp   2014   问题   

原文地址:http://blog.csdn.net/moqiang02/article/details/39664545

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!