docker 安裝MongoDB以及設定使用者

來源:互聯網
上載者:User

標籤:ati   root   write   col   show   tab   新版本   data   建立   

docker pull mongo (拉取鏡像 預設最新版本)

docker images (查看鏡像)

docker run -p 27017:27017 -td mongo (啟動鏡像)

docker ps (查看啟動的鏡像)

docker exec -it 鏡像id /bin/bash (進入容器)

mongo (進入mongodb)

 

下面是安裝完之後,正確的執行步驟,建立管理賬戶使用者和普通使用者的步驟,

建立管理賬戶,然後退出。

use admin
db.createUser(
{
user: "admin",
pwd: "password",
roles: [ { role: "root", db: "admin" } ]
}
);

 

exit; (退出容器)

 

mongo --port 27017 -u admin -p password --authenticationDatabase admin (以剛建立的使用者登入資料庫 建立test使用者)


use test
db.createUser(
{
user: "tester",
pwd: "password",
roles: [
{ role: "readWrite", db: "test" }
]
}
);

exit

mongo -u tester -p --authenticationDatabase test (以剛建立的test使用者登入)

 

mongodb其他動作命令

show dbs (顯示資料庫)

use  dbname (切換到資料庫)

show collections (顯示表)

db.find.表名 (查看錶資料)

 

docker 安裝MongoDB以及設定使用者

相關文章

聯繫我們

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