使用mongo命令進(jìn)入數(shù)據(jù)后再進(jìn)行權(quán)限認(rèn)證
mongo
...
use admin
...
db.auth('username','password')
查詢集合的所有文檔記錄
>db.collection.find().pretty()
#pretty()是以格式化的形式輸出
查詢特定條件的文檔
>db.collection.find({'age':{'$gt':20})
刪除集合里的所有文檔記錄
>db.collection.remove({})