沒那麼多雞湯,開始鏈接吧~html
從網上看到一篇快速入門的MongoDB教程,貼個地址備註下~mongodb
一:鏈接shell
前面一節咱們安裝了ManogoDB,若是你成功安裝了的話~那麼,新開終端,輸入下述指令進行鏈接。數據庫
mongo |
出現下述所示,很好,你成功啦~能夠以命令行的方式操做啦yii
MongoDB shell version: 3.2.8ide connecting to: test工具 Welcome to the MongoDB shell.ui For interactive help, type "help".google For more comprehensive documentation, seespa http://docs.mongodb.org/ Questions? Try the support group http://groups.google.com/group/mongodb-user Server has startup warnings: 2016-08-02T19:16:07.239+0800 I CONTROL [initandlisten] 2016-08-02T19:16:07.239+0800 I CONTROL [initandlisten] ** WARNING: soft rlimits too low. Number of files is 256, should be at least 1000 > > > |
若是你沒有成功安裝mongodb,你可能會出現以下的錯誤哦~
MongoDB shell version: 3.2.8 connecting to: test 2016-08-02T18:14:33.677+0800 W NETWORK [thread1] Failed to connect to 127.0.0.1:27017, reason: errno:61 Connection refused 2016-08-02T18:14:33.678+0800 E QUERY [thread1] Error: couldn't connect to server 127.0.0.1:27017, connection attempt failed : connect@src/mongo/shell/mongo.js:229:14 @(connect):1:6 exception: connect failed |
因此,失敗的~參考上一節~在安裝下吧~
二:增刪改查
1:數據庫
(1)查詢已有的數據庫
show dbs |
初次安裝的話,會出現以下所示的一種數據庫
local 0.000GB |
(2)安裝數據庫
use 數據庫名(如:test) |
有同名數據庫就切換到已有的,沒有的話就會建立新的
switched to db test |
2:集合
(1)建立集合
db.createCollection("集合名字:如(mycollection)") |
結果:
{ "ok" : 1 } |
(2)查看集合
show collections |
結果:
mycollection(建立的集合名字) |
3:增:insert(以集合mycollection爲例)
db.mycollection.insert({name:"liujinhuan"}) |
結果:
WriteResult({ "nInserted" : 1 }) |
4:查:find(以集合mycollection爲例)
db.mycollection.find().pretty() |
結果:
{ "_id" : ObjectId("57a0871725ae4f21a42b44e3"), "name" : "liujinhuan" } |
5:改:update(以集合mycollection爲例)。修改name是liujinhuan的爲TTTTTT
db.mycollection.update({'name':'liujinhuan'},{$set:{'name':'TTTTTT'}}) |
結果:
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 }) |
6:刪:remove(以集合mycollection爲例)
db.mycollection.remove({"name":"liujinhuan"}) |
結果:
WriteResult({ "nRemoved" : 1 }) |
三:可視化操做工具
上述操做都是在終端中輸入指令執行的~推薦一款可視化操做工具Robomongo~
太晚啦~明兒體檢~早睡~