對(duì) MongoDb 文檔數(shù)據(jù)庫(kù)感興趣,要安裝認(rèn)識(shí)下。
到官方下載 win 版 http://www.mongodb.org/display/DOCS/Downloads 目前最新穩(wěn)定版是 1.2.4。解壓到 f:/sofr/mongodb-win32-i386-1.2.4。
啟動(dòng) mongod
復(fù)制代碼 代碼如下:
F:\soft\mongodb-win32-i386-1.2.4>bin\mongod.exe --dbpath=f:/mongodb
Mon Mar 08 11:13:17 Mongo DB : starting : pid = 0 port = 27017 dbpath = f:/mongodb master = 0 slave
= 0 32-bit
** NOTE: when using MongoDB 32 bit, you are limited to about 2 gigabytes of data
** see http://blog.mongodb.org/post/137788967/32-bit-limitations for more
Mon Mar 08 11:13:18 db version v1.2.4, pdfile version 4.5
Mon Mar 08 11:13:18 git version: 5cf582d3d96b882c400c33e7670b811ccd47f477
Mon Mar 08 11:13:18 sys info: windows (5, 1, 2600, 2, 'Service Pack 3') BOOST_LIB_VERSION=1_35
Mon Mar 08 11:13:18 waiting for connections on port 27017
--dbpath 指定數(shù)據(jù)庫(kù)的目錄,默認(rèn)是 /data/db,win 沒(méi)有 /data/db 目錄,所以直接雙擊 mongod 是啟動(dòng)不了。默認(rèn)端口是 27017
linux 下我用 legacy-static 版,因?yàn)樵创a編譯沒(méi)成功。
服務(wù)器啟動(dòng)后,用客戶端試用下,它自帶有個(gè)客戶端(MongoDB shell)。bin/mongo.exe
復(fù)制代碼 代碼如下:
F:\soft\mongodb-win32-i386-1.2.4>bin\mongo.exe
MongoDB shell version: 1.2.4
url: test
connecting to: test
type "exit" to exit
type "help" for help
> use test
switched to db test
> db.foo.save({a:1})
> db.foo.find()
{ "_id" : ObjectId("4b946bc03f78000000001542"), "a" : 1 }
>
mongod.exe 后端可以看到日志。
MongoDB 客戶端豐富,我用 python 試下(安裝請(qǐng)看:http://api.mongodb.org/python/1.4%2B/installation.html)。安裝 pymongo
復(fù)制代碼 代碼如下:
easy_install pymongo
復(fù)制代碼 代碼如下:
from pymongo import Connection
connection = Connection()
db = connection.test
for f in db.foo.find():
print "a=%s, _id=%s" % (f['a'], f['_id'])
可以看到結(jié)果。a=1.0, _id=4b946bc03f78000000001542。_id 是mongo 內(nèi)部的字段。
它的像 sql 的查詢比較吸引人 ……
原文:http://blog.chenlb.com/2010/03/mongodb-quick-start.html
您可能感興趣的文章:- MongoDB中javascript腳本編程簡(jiǎn)介和入門實(shí)例
- MongoDB入門教程(包含安裝、常用命令、相關(guān)概念、使用技巧、常見(jiàn)操作等)
- MongoDB入門教程之Windows下的MongoDB數(shù)據(jù)庫(kù)安裝圖解
- MongoDB入門教程之主從復(fù)制配置詳解
- MongoDB入門教程之C#驅(qū)動(dòng)操作實(shí)例
- MongoDB修改、刪除文檔的域?qū)傩詫?shí)例
- MongoDB快速入門筆記(六)之MongoDB刪除文檔操作