【mongodb 學習一】環境搭建之 mac 下鏈接 mongodb 的UI 客戶端

記錄下 mongodb 的學習

懶得本身達 mongodb 的服務器了

雖然一句命令就能搞定了python

brew install mongodblinux

但是考慮到之後的應用仍是放在網上的,就直接用現成的服務吧mongodb

下載客戶端(robomongo 是多平臺,開源免費得的,windows,mac,linux都有)

http://robomongo.org/數據庫

下載就很少說了,按本身須要的平臺來下載就好了windows

 

 

去 mongodblab.com 註冊個免費得500M 數據庫服務器

https://mongolab.com/welcome/學習

 

建立數據庫

 

 

第一次須要建立用戶,會有黃色的警告,點他就好了。spa

 

客戶端配置

打開 Robomongo3d

 

create newblog

 

python鏈接 mongodb 數據庫

 

安裝

pip install pymongo

>>> import pymongo

>>> conn = pymongo.Connection("mongodb://username:password@ds051980.mongolab.com:51980/yuliyangdb」)

>>> db = conn['yuliyangdb']

>>> db.collection_names()

[u'system.indexes', u'system.users', u'users', u'dbtest1']

相關文章
相關標籤/搜索