MongoDB的官网是:http://www.mongodb.org/
最新下载地址: http://www.mongodb.org/downloads
我选择的版本:mongodb-win32-x86_64-2008plus-ssl-3.0.1-signed
百度云下载地址:http://pan.baidu.com/s/1jH1RgSQ
图形管理工具MongoVue-1.6.9,百度云下载地址:http://pan.baidu.com/s/1hrnHZuc
安装
下载并安装:mongodb-win32-x86_64-2008plus-ssl-3.0.1-signed.msi
加入windows服务中
添加服务 mongod --port 27017 --dbpath "D:\soft\MongoDB\data\db" --logpath "D:\soft\MongoDB\data\log\MongoDB.log" --install --serviceName "MongoDB" 删除服务 mongod --port 27017 --dbpath "D:\soft\MongoDB\data\db" --logpath "D:\soft\MongoDB\data\log\MongoDB.log" --remove --serviceName "MongoDB" net start MongoDB (开启服务) net stop MongoDB (关闭服务)【注意】MongoDB如果启动不了删除MongoDB db下mongod.lock。
评论