第一步:下载MongoDB的安装版进行安装
由于第二次安装出现一些问题,所有还是记录一下,免得以后踩坑。
重点,安装的时候,下面那个一定要去掉,不然会安装很长的时间!!!!
安装步骤就是下一步,很简单就不说了。
第二步:设置路径 dbpath 在 mongod.exe 指向 data 备用路径。
这里因为是Win系统,所有一定要用cd 进磁盘,直接贴链接是不行的。
D:\soft\mongodb\bin>mongod --dbpath D:\mongodb\data\db
会出来一串输出内容,表示安装成功
第三步:运行的MongoDB
C:\Users\Administrator.SKY-20170815DYT>d:D:\>cd D:\soft\mongodb\binD:\soft\mongodb\bin>mongo.exe
如果打印出下面的log。
MongoDB shell version v3.4.10connecting to: mongodb://127.0.0.1:27017MongoDB server version: 3.4.10Welcome to the MongoDB shell.For interactive help, type "help".For more comprehensive documentation, see http://docs.mongodb.org/Questions? Try the support group http://groups.google.com/group/mongodb-user
第四步:测试下,简单的存储
> db.test.save({a:1})WriteResult({ "nInserted" : 1 })> db.test.find(){ "_id" : ObjectId("5abf8653521989e02fb2fd33"), "a" : 1 }
mongodb有一个默认的test库,这里先存储个,然后可以查询到,就表示安装OK了。
第五步:连接到robomongo ,初始化没设置密码,随便连就能连接上了。
可以在test库里,看到通过控制台存储的值。
第六步:下次启动还是要重复第二步到第四步。
D:\soft\mongodb\bin>mongod.exe --dbpath D:\mongodb\data\dbC:\Users\Administrator.SKY-20170815DYT>d:D:\>cd D:\soft\mongodb\binD:\soft\mongodb\bin>mongo.exe
这样就能够连接上了。
为了方便简单,以后可以直接写成一个bat文件,点开执行就行,代码是:
@echo offd:cd soft/mongodb/binmongod.exe --dbpath D:\mongodb\data\db