天天看點

windows下MongoDB入門(二次翻譯)

下載下傳

安裝MongoDB最簡單的方法(也是推薦方法)是使用編譯好的二進制檔案。

注意:推薦使用64位版本(盡管這樣你必須使用64位系統來運作這個版本)。

32-bit binaries 64-bit binaries

解壓

将下載下傳好的而機制檔案解壓到你喜歡的任意位置。為了友善,可以把“mongo-xxxxxxx”重命名為“mongo”。

建立資料目錄

:MongoDB預設把資料存放在\data\db目錄下,但是它不會自動建立這個檔案夾。是以我們這樣做:

C:\> mkdir \data

C:\> mkdir \data\db      

當然你也可以通過資料總管完成。

.如果你想要把資料檔案存放在其他位置,打開mongod.exe的時候使用--dbpath指令行參數。

運作并連接配接到伺服器

開始運作時有兩個重要檔案:

mongod.exe - 資料庫伺服器。使用mongod –help可以檢視啟動選項。

 mongo.exe - 管理者指令行。      

要運作資料庫,從資料總管或者CMD視窗打開mongod.exe即可。

C:\> cd \my_mongo_dir\bin

C:\my_mongo_dir\bin> mongod      

注意:本伺服器也可以作為Windows服務運作,我們稍候介紹。

現在,打開管理者指令行(從資料總管輕按兩下或者使用CMD視窗)。預設地,mongo.exe會運作在localhost上連接配接到一個mongod伺服器并且使用test資料庫。可以運作mongo –help檢視其他選項。

C:\> cd \my_mongo_dir\bin

C:\my_mongo_dir\bin> mongo      
> // the mongo shell is a javascript shell connected to the db
> // by default it connects to database 'test' at localhost
> 3+3
6
> db
test
> // the first write will create the db:
> db.foo.insert( { a : 1 } )
> db.foo.find()
{ _id : ..., a : 1 }
> show dbs
...
> show collections
...
> help      

Congratulations, 你已經儲存和取回你的第一個MongoDB 文檔了!

程式設計

你可以使用MongoDB虛拟任何程式設計語言寫程式。到

Drivers

頁面檢視全部語言清單,如果要編寫.NET程式也可以到

C#

頁面檢視資訊。