标签:
1)、下载MongoDB http://downloads.mongodb.org/win32/mongodb-win32-i386-2.4.5.zip 2)、设置MongoDB目录 将其解压到 d:\,再重命名为mongodb,路径为d:\mongodb 3)、设置数据文件路径 在d:盘建一个data文件夹,在data文件夹中新建db文件夹,路径d:\data\db 4)、启动MongoDB服务 进入 cmd 提示符控制台, D:\mongodb\bin\mongod.exe --dbpath=d:\data\db Mon Apr 16 08:50:54 [initandlisten] waiting for connections on port 27017 MongoDB服务端的默认连接端口:27017 5)、将MongoDB作为 Windows 服务随机启动 先创建D:\mongodb\logs\mongodb.log文件,用于存储MongoDB的日志文件, 再安装系统服务: D:\mongodb\bin\mongod --dbpath=d:\data\db --logpath=d:\mongodb\logs\mongodb.log --install (如果提示:Error connecting to the Service Control Manager这种错误,则应该使用管理员身份运行cmd 找到命令处理程序C:\Windows\System32\cmd.exe 右键:以管理员身份运行 ) 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:\>net start mongodb Mongo DB 服务已经启动成功。 D:> 注意:如果需要卸载服务,执行命令:sc delete MongoDB 6)、客户端连接验证 新打开一个CMD输入:d:\mongodb\bin\mongo, d:\mongodb\bin\mongo MongoDB shell version: 2.0.4 connecting to: test 7)、查看MongoDB日志 查看D:\mongodb\logs\mongodb.log文件,即可对MongoDB的运行情况进行查看或排错。 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数据库服务已经成功启动了。 http://localhost:28017/管理
标签:
原文地址:http://my.oschina.net/goudingcheng/blog/528358