windows下MongoDB入門

來源:互聯網
上載者:User

下載

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

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

下載32-bit binaries


下載64-bit binaries

解壓

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

建立資料目錄

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

 

Cmd代碼  
  1. C:\> mkdir \data  
  2.   
  3. C:\> mkdir \data\db  

 

 

 

當然你也可以通過資源管理員完成。

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

運行並串連到伺服器

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

 

Db代碼  
  1. mongod.exe - 資料庫伺服器。使用mongod –help可以查看啟動選項。  
  2.   
  3. mongo.exe - 管理員命令列。  

要運行資料庫,從資源管理員或者CMD視窗開啟mongod.exe即可。

 

Cmd代碼  
  1. C:\> cd \my_mongo_dir\bin  
  2.   
  3. C:\my_mongo_dir\bin> mongod  

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

 

現在,開啟管理員命令列(從資源管理員雙擊或者使用CMD視窗)。預設地,mongo.exe會運行在localhost上串連到一個mongod伺服器並且使用test資料庫。可以運行mongo –help查看其他選項。

Cmd代碼  
  1. C:\> cd \my_mongo_dir\bin  
  2.   
  3. C:\my_mongo_dir\bin> mongo  

 

 

Js代碼  
  1. > // the mongo shell is a javascript shell connected to the db  
  2. > // by default it connects to database 'test' at localhost  
  3. > 3+3  
  4. 6  
  5. > db  
  6. test  
  7. > // the first write will create the db:  
  8. > db.foo.insert( { a : 1 } )  
  9. > db.foo.find()  
  10. { _id : ..., a : 1 }  
  11. > show dbs  
  12. ...  
  13. > show collections  
  14. ...  
  15. > help  

 

 

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

編程

你可以使用MongoDB虛擬任何程式設計語言寫程式。到Drivers頁面查看全部語言列表,如果要編寫.NET程式也可以到C#頁面查看資訊。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.