1. 安裝
sudo apt-get update
sudo apt-get install mongodb
2. 進入MongoDB
#進入 mongo #選擇database use your_database
3. 為database新增使用者
#選擇database
use your_database
#新增使用者
db.auth('account', 'password')
4. 新增table
db.table_name.insert(
{
"username" : "tom",
"password" : "asdf34#$FGDfgdfgfd45gfdf65s1dfsf3",
"email" : "tom@gmail.com"
}
)
5. 刪除Database&Collection
刪除Database
刪除Collection
6. 備份Database
Export Database
Import Database
6. 備份Collection
Export Collection json file
文章標籤
全站熱搜
留言列表