当前位置: 代码迷 >> 其他数据库 >> 为什么localhost:27017 显示异常信息
  详细解决方案

为什么localhost:27017 显示异常信息

热度:2584   发布时间:2013-02-26 00:00:00.0
为什么localhost:27017 显示错误信息
在浏览器输入:http://localhost:27017/,可以看到如下提示:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number 

如此,MongoDB数据库服务已经成功启动了。



可以我的数据库已经连接上。程序中可用了
但是访问
localhost:27017 的适合仍然不会出现



------解决方案--------------------------------------------------------
Web端口号与主服务端口号是不一样的,前者连接到一个HTTP服务器,而后者是一个驱动端口,只能处理MongoDB的传输协议。如果启动mongod时,默认使用27017端口,则在浏览器中查看http://localhost:27017,会看到如下提示:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number
所以正确的查看方法是输入http://localhost:28017
如果启动mongod时指定了端口,则在浏览器中输入的端口号比主服务端口号大1000
  相关解决方案