mongodb 使用者及資料庫管理命令

來源:互聯網
上載者:User

標籤:one   strong   save   資料庫連接   OLE   登入   bash   pac   plain   

1、使用者管理:

串連資料庫:

1 mongo 127.0.0.1:27017

切換到admin資料庫:

1 > use admin

建立管理員賬戶:

1234567 db.createUser({user: "rootUser",pwd: "rootPass",roles: [ { role: "root", db: "admin" } ]})

登入資料庫:

12 > use admin> db.auth("adminUser", "adminPass")

> 顯示當前資料庫中所有的賬戶:

1 db.system.users.find().pretty()

切換到指定資料庫:

1 > use testDB

顯示當前資料庫的使用者:

1 > show users

建立使用者:

1234567 db.createUser({user: "testUser",pwd: "testPass",roles: [ { role: "readWrite", db: "testdb" }] })

刪除指定使用者:

1 > db.dropUser("testUser")

退出資料庫連接:

1 > quit()

 

2、資料庫管理:

切換到要建立的資料庫:

1 > use testdb;

建立使用者:

1234567 db.createUser({user: "testUser",pwd: "testPass",roles: [ { role: "readWrite", db: "testdb" }] })

用建立的賬戶登入:

1 > db.auth("testUser","testPass")

在當前資料庫中建立集合;

1 > db.table1.save({"id":"1"})

顯示當前資料庫的集合:

1 > db.table1.save({"id":"1"})

在當前集合中插入一條資料:

1 > db.table1.insert({"id":"3"})

顯示當前集合中的所有資料內容:

1 > db.table1.find()

顯示當前集合中指定的資料內容:

1 > db.table1.findOne({"id":"3"})

顯示當前使用的資料庫:

1 > db()

刪除當前資料庫:

1 > db.dropDatabase()

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.