mongodb之基礎操作

來源:互聯網
上載者:User

1,安裝:以我本機為例:

1)命令安裝方式:

1.1 將下載下來的壓縮包解壓到 D:\Installed\MongoDB 下面。

1.2 以管理員方式開啟命令提示字元,將目錄切換到 D:\Installed\MongoDB\bin下面(也可以通過設定環境變數,這樣就不用切換目錄了)。

1.3 運行下面的命令

mongod --dbpath D:\Installed\MongoDB\data\db --logpath D:\Installed\MongoDB\log\mylog.log --install --serviceName "MongoDB"

運行完成後在瀏覽器輸入如下URL:http://localhost:27017/   如果出現類似下面的內容,就說明安裝成功了:

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

命令解釋: --dbpath mongodb資料庫檔案的存放位置; --logpath mongodb記錄檔的位置   --serviceName mongodb的服務名稱

 

2)設定檔方式安裝(推薦) 

2.1 建立一個設定檔mongod.cfg(名字不是強制的),放在D:\Installed\MongoDB 下面(位置也不是強制的),設定檔寫入如下內容:

dbpath=D:\Installed\MongoDB\data\db

logpath=D:\Installed\MongoDB\log\mongod.log  

這些內容是mongodb 安裝時的配置資訊

2.2 以管理員方式進入命令提示字元,運行如下命令:

mongod --config d:\mongodb\mongod.cfg --install 

安裝成功後服務名預設為MongoDB

 

===================================mongodb 常用命令及索引操作

常用命令:====查看當前資料庫狀態db.stats()===個人化系統可以協助標記效率慢的查詢,開啟命令如下:db.setProfilingLevel(1)==查看個人化資料,輸出所有查詢用時超過100ms的日誌db.system.profile.find({millis:{$gt:100}}) ==查看複製資訊rs.status()===查看鎖情況use configdb.locks.find()========Database Backup步驟:1,將緩衝中的資料寫入磁碟,同時鎖住資料庫,不允許再寫資料db.fsynclock()2,建立快照3,將資料庫解鎖db.fsyncUnlock()=======建立索引ensureIndex()=例子1:{"field1":1}{"field2,field3":1}{"field2":1,"field3":1}索引也可以建立在子文檔上,比如:db.factories.find({metro:{city:"New York",state:"NY"}})=例子2:people類如下:{ "_id":ObjectId(), "name":"john smith", "address":{ "street":"Main", "zipcode":100081, "state":"WI" }}建立索引的語句:db.people.ensureIndex("address.zipcode":1)=複合式索引products的collection如下:{"_id":ObjectId(...),"item":"Banana","category":["food","produce","grocery"],"location":"4th Street Store","stock":4,"type":cases,"arrival":Date(...)}建立複合式索引的語句:db.products.ensureIndex({"item":1,"location":1,"stock":1})==多鍵索引一個欄位的值是一個數組,那麼在這個欄位上建立的索引會索引數組中的每一個元素。例子:{"_id":ObjectId("..."),"name":"Warm John","author":"li ke", "tags":["weather","hot","record","april"]}==唯一索引:例子:為user_id建立唯一索引:db.addresses.ensureIndex({"user_id":1},{unique:true})===sparse indexdb.addresses.ensureIndex({"xmpp_id":1},{sparse:true})==========建立索引的參數==後台建立索引,不影響資料庫執行個體的使用db.people.ensureIndex({zipcode:1},{background:true,sparse:true})==強制建立唯一索引db.accounts.ensureIndex({username:1},{unique:true,dropDups:true})

強制建立時會重複資料刪除記錄! 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.