日期:2014-05-16 浏览次数:20422 次
一、MongoDB数据库简介
简介
特点
二、MongoDB数据库安装
MongoDB官方下载地址:http://www.mongodb.org/downloads
Windows下MongoDB安装步骤:
安装配置
3、新建目录“D:\app\mongodata”,用来存放数据库。
启动MongoDB服务端
1、在cmd窗口执行以下语句:
>cd /d D:\app\mongodb\bin\
>mongod --dbpath D:\app\mongodata
2、启动成功的提示界面
在浏览器中打开 http://localhost:27017/ ,可以看到以下内容:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number
注:在系统环境变量Path中添加路径 D:\MongoDB\bin,就不用每次都到mongoDB的bin目录下启动了。
三、MongoDB数据库可视化工具
RockMongo