use admin #進入資料庫admin
db.adduser('name','pwd') #增加或修改使用者密碼
db.system.users.find() #檢視使用者列表
db.auth('name','pwd') #使用者認證
db.removeuser('name') #刪除使用者
show users #檢視所有使用者
show dbs #檢視所有資料庫
show collections #檢視所有的collection
db.printcollectionstats() #檢視各collection的狀態
db.printreplicationinfo() #檢視主從複製狀態
db.repairdatabase() #修復資料庫
db.setprofilinglevel(1) #設定記錄profiling,0=off 1=slow 2=all
show profile #檢視profiling
db.copydatabase('mail_addr','mail_addr_tmp') #拷貝資料庫
db.mail_addr.drop() #刪除collection
db.dropdatabase() #刪除當前的資料庫
mongo基礎操作
1.linux伺服器中已經安裝了mongo後,在mongo命令下的基礎shell命令 show dbs 顯示資料庫列表 show collections 顯示當前資料庫中的集合 類似關聯式資料庫中的表 show users 顯示使用者 use 切換當前資料庫,這和ms sql裡面的意思一樣 db.h...
Mongo簡單查詢總結
mongo 簡單查詢 db.ansheng.findone 返回第一條匹配到的資料 db.ansheng.findone db.ansheng.find 最簡單的查詢 db.ansheng.find 返回匹配到的資料 db.ansheng.find limit 1 根據查詢條件 find 返回指定條...
Mongo操作指令碼筆記
批量更新,更新陣列中物件 var cursor db.language.find cursor.foreach function x subset.foreach function sub 去重求count db.wpsfile.distinct wpsuserid length export mo...