Windows下安装Mongodb的教程Windows服务器操作系统 电脑资料.doc

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Windows下安装Mongodb的教程Windows效劳器操作系统
电脑资料
因工程要使用Mongodb,所以需要在本地机器上安装Mongodb,我的机器系统为Win7 64位,
1.下载Mongodb
.mongodb/downloads
找到自己系统对应的版本,32位或者64位,下载下来
2.将下载的安装包解压到你要安装的目录
例如:D:\xampp\mongodb,为了方便使用命令行,需要将
D:\xampp\mongodb\bin加到系统环境变量的path中。

3.启动Mongodb
使用mongod --dbpath D:\xampp\mongodb\data命令启动Mongodb C:\Users\lxy>mongod --dbpath D:\xampp\mongodb\data
Wed Apr 02 17:09:54.468 [initandlisten] MongoDB starting : pid=12244 port=27017
dbpath=D:\xampp\mongodb\data 64-bit host=IdeaBear-PC
Wed Apr 02 17:09:54.469 [initandlisten] db version v2.4.9 Wed Apr 02 17:09:54.470 [initandlisten] git version:
52fe0d21959e32a5bdbecdc6205
7db386e4e029c
Wed Apr 02 17:09:54.471 [initandlisten] build info: windows sys.getwindowsversio
n(major=6, minor=1, build=7601, platform=2,
servicepack='Service Pack 1') BOOST
LIBVERSION=149
Wed Apr 02 17:09:54.471 [initandlisten] allocator: system Wed Apr 02 17:09:54.472 [initandlisten] options: { dbpath: "D:\xampp\mongodb\dat
a" }
Wed Apr 02 17:09:54.519 [initandlisten] journal
dir=D:\xampp\mongodb\data\journa
l
Wed Apr 02 17:09:54.520 [initandlisten] recover : no journal files present, no r
ecovery needed
Wed Apr 02 17:09:54.542 [FileAllocator] allocating new datafile D:\xampp\mongodb
\data\local.ns, filling with zeroes...
Wed Apr 02 17:09:54.542 [FileAllocator] creating directory D:\xampp\mongodb\data
\tmp
Wed Apr 02 17:09:54.627 [FileAllocator] done allocating datafile D:\xampp\mongod
b\data\local.ns, size: 16MB, took 0.083 secs
Wed Apr 02 17:09:54.628 [FileAllocator] allocating new datafile D:\xampp\mongodb
\data\local.0, filling with zeroes...
Wed Apr 02 17:09:54.838 [FileAllocator] done allocating datafile D:\xampp\mongod
b\data\local.0, size: 64MB, took 0.208 secs
Wed Apr 02 17:09:54.840 [initandlisten] mand local.$cmd mand: { create: "s
tartuplog", size: 10485760, capped: true } ntoreturn:1 keyUpdates:0 reslen:37
297ms
Wed Apr 02 17:09:54.844 [initandlisten] waiting for connections on port 27017
Wed Apr 02 17:09:54.943 [websvr] admin web console waiting for connections on po
rt 28017
最后两行说明了数据库的端口为27017和28017,
4.将Mongodb安装为windows效劳
使用命令mongod --logpath D:\xampp\mongodb\log\MongoDB.log --logappend --dbpath D:\xampp\mongodb\data --directoryperdb --serviceName MongoDB --install 安装效劳
Microsoft Windows [版本 6.1.7601]
(c) xx Microsoft Corporation。

保存所有权利。

D:\xampp\mongodb\bin>mongod --logpath
D:\xampp\mongodb\log\MongoDB.log --logappend
--dbpath D:\xampp\mongodb\data --directoryperdb --serviceName MongoDB --install
Wed Apr 02 17:23:38.146 Trying to install Windows service 'MongoDB'
Wed Apr 02 17:23:38.546 Service 'MongoDB' (Mongo DB) installed with mand line
'D:\xampp\mongodb\bin\mongod.exe --logpath
D:\xampp\mongodb\log\MongoDB.log --l
ogappend --dbpath D:\xampp\mongodb\data --directoryperdb --service'
Wed Apr 02 17:23:38.546 Service can be started from the mand line with ' s
tart MongoDB'
启动MongoDB: start MongoDB
停止MongoDB: stop MongoDB。

相关文档
最新文档