野心勃勃的NoSQL新贵 MongoDB应用实战(3)

前端之家收集整理的这篇文章主要介绍了野心勃勃的NoSQL新贵 MongoDB应用实战(3)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Windows版本服务器安装@H_301_2@

(1)、下载MongoDB@H_301_2@

URL地址: http://downloads.mongodb.org/win32/mongodb-win32-i386-1.8.1.zip

(2)、设置MongoDB目录@H_301_2@

将其解压到 d:\,再重命名为mongodb,路径为d:\mongodb

(3)、设置数据文件路径@H_301_2@

在d:盘建一个db文件夹,路径d:\db

(4)、启动MongoDB服务@H_301_2@

进入 cmd 提示符控制台,D:\mongodb\bin\mongod.exe --dbpath=d:\data\db

D:\mongodb\bin>D:\mongodb\bin\mongod --dbpath=d:\data\db   
Sun Apr 10 22:34:09 [initandlisten] MongoDB starting : pid=5192 port=27017 dbpat   
h=d:\data\db 32-bit   
** NOTE: when using MongoDB 32 bit,you are limited to about 2 gigabytes of data   
**       see http://blog.mongodb.org/post/137788967/32-bit-limitations   
**       with --dur,the limit is lower   
Sun Apr 10 22:34:09 [initandlisten] db version v1.8.1,pdfile version 4.5   
Sun Apr 10 22:34:09 [initandlisten] git version: a429cd4f535b2499cc4130b06ff7c26   
f41c00f04   
Sun Apr 10 22:34:09 [initandlisten] build sys info: windows (5,1,2600,2,'Ser   
vice Pack 3') BOOST_LIB_VERSION=1_35  
Sun Apr 10 22:34:09 [initandlisten] waiting for connections on port 27017   
Sun Apr 10 22:34:09 [websvr] web admin interface listening on port 28017



MongoDB服务端的默认连接端口是 27017

(5)、将MongoDB作为 Windows 服务随机启动@H_301_2@

先创建D:\mongodb\logs\mongodb.log文件,用于存储MongoDB的日志文件,再安装系统服务:

D:\mongodb\bin\mongod --dbpath=d:\data\db --logpath=d:\mongodb\logs\mongodb.log --install   
D:\mongodb\bin>D:\mongodb\bin\mongod --dbpath=d:\data\db --logpath=d:\mongodb\lo   
gs\mongodb.log --install   
all output going to: d:\mongodb\logs\mongodb.log   
Creating service MongoDB.   
Service creation successful.   
Service can be started from the command line via 'net start "MongoDB"'.   
D:\mongodb\bin>net start mongodb   
Mongo DB 服务已经启动成功。   
D:\mongodb\bin>

(6)、客户端连接验证@H_301_2@

新打开一个CMD输入:d:\mongodb\bin\mongo,如果出现下面提示,那么您就可以开始MongoDB之旅了:

D:\mongodb\bin>d:\mongodb\bin\mongo   
MongoDB shell version: 1.8.1   
connecting to: test   
>



(7)、查看MongoDB日志@H_301_2@

查看D:\mongodb\logs\mongodb.log文件,即可对MongoDB的运行情况进行查看或排错了:

这样就完成了Windows平台的MongoDB安装。

原文链接:https://www.f2er.com/nosql/203703.html

猜你在找的NoSQL相关文章