MongoDB学习之(一)安装详解大数据

 

第一步:下载MongoDB的安装版进行安装

https://pan.baidu.com/s/1X3hIqORJ61TCG1UJ_yr6ag

安装步骤就是下一步,很简单就不说了。

第二步:设置路径 dbpath 在 mongod.exe 指向 data 备用路径。

D:/soft/mongodb/bin>mongod --dbpath D:/mongodb/data/db 

 会出来一串输出内容,表示安装成功

第三步:运行的MongoDB

C:/Users/Administrator.SKY-20170815DYT>d: 
 
D:/>cd D:/soft/mongodb/bin 
 
D:/soft/mongodb/bin>mongo.exe

如果打印出下面的log。

MongoDB shell version v3.4.10 
connecting to: mongodb://127.0.0.1:27017 
MongoDB server version: 3.4.10 
Welcome 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 ,初始化没设置密码,随便连就能连接上了。

MongoDB学习之(一)安装详解大数据

可以在test库里,看到通过控制台存储的值。

第六步:下次启动还是要重复第二步到第四步。

D:/soft/mongodb/bin>mongod.exe --dbpath D:/mongodb/data/db 
 
C:/Users/Administrator.SKY-20170815DYT>d: 
 
D:/>cd D:/soft/mongodb/bin 
 
D:/soft/mongodb/bin>mongo.exe 

 这样就能够连接上了。

 为了方便简单,以后可以直接写成一个bat文件,点开执行就行,代码是:

@echo off 
d: 
 
cd soft/mongodb/bin 
 
mongod.exe --dbpath D:/mongodb/data/db 

  

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/8947.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论