MongoDB的安裝和簡單使用

來源:互聯網
上載者:User



安裝
1.建立一個mongodb檔案夾

建立一個mongodb檔案夾,另外建立一個mongodb的data檔案夾用來作為資料庫


2.安裝mongodb

與安裝sql不一樣的是,安裝mongodb通過執行cmd命令來操作

執行cmd命令

a.找到檔案目錄的bin

b.通過bin檔案下的一個引擎來部署



dbpath就是我們mongodb資料庫的地址



安裝成功就是這樣一個介面

預設的27017連接埠

這時候在瀏覽器輸入localhost:27017


You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number


我們可以看到這樣的一句話就證明mongodb安裝成功了。


3.設定window環境變數


我們解壓後的bin檔案內的執行檔案的路徑直接放到環境變數裡面,這樣我們就直接可以通過cmd來訪問所有的程式了。



 

4.bat檔案


啟動mongodb服務

 

我的批次檔:http://pan.baidu.com/s/1i3ql7bZ


簡單使用


1.建立一個資料庫

Use[databaseName]

這隻是一個資料庫緩衝的池,如果現在離開這個空資料庫就會被刪除


2.查看所有資料庫


show dbs


3.給指定資料庫添加集合并且添加記錄



4.查看資料庫中所有的文檔


Show collections


5.更新文檔資料


db.person.update({name:"clm"},{$set:{name:"czs"}})


 



6.刪除資料庫中的集合

 db.[document].drop()       

 

7.刪除資料庫

db.dropdatabase


8.help顯示所有關於資料庫的操作
9.資料庫和集合命令規範


10.mongoDB的shell內建js引擎可以直接執行j代碼




總結


以上算是對mongodb的一個大概的瞭解,具體使用還需要好好聯絡具體的執行個體來做。


相關文章

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.