MongoDB許可權管理之使用者名稱和密碼的操作

來源:互聯網
上載者:User

 

MongoDB許可權管理之使用者名稱和密碼的操作MongoDB預設是不需要輸入使用者名稱和密碼,客戶就可以登入的。但是出於安全性的考慮,我們還是要為其設定使用者名稱和密碼。本文主要介紹的是MongoDB許可權管理之使用者名稱和密碼的操作,希望能對您有所協助。

AD:


    本文我們介紹MongoDB許可權管理,主要介紹的是如何設定使用者名稱和密碼。接下來我們就一一介紹。

    添加使用者的時候必須滿足以下兩個條件:

    1.有相關許可權的情況下(後面會說)。

    2.mongod沒有加--auth的情況下(如果加了,你添加許可權的話 會出現下面的情況)。

     
    1. > use admin    
    2.  
    3. switched to db admin    
    4.  
    5. > db.addUser('sa','sa')    
    6.  
    7. Fri Jul 22 14:31:13 uncaught exception: error {    
    8.  
    9. "$err" : "unauthorized db:admin lock type:-1 client:127.0.0.1",    
    10.  
    11. "code" : 10057    
    12.  
    13. }    
    14.  
    15. >    

    所以我們添加使用者時必須先在沒有加--auth的時候添加個super  admin。

    服務起來後,進入./mongo。

     
    1. [root@:/usr/local/mongodb/bin]#./mongo    
    2.  
    3. MongoDB shell version: 1.8.2    
    4.  
    5. connecting to: test    
    6.  
    7. > use admin    
    8.  
    9. switched to db admin    
    10.  
    11. > db.adduser('sa','sa')    
    12.  
    13. Fri Jul 22 14:34:24 TypeError: db.adduser is not a function (shell):1    
    14.  
    15. > db.addUser('sa','sa')    
    16.  
    17. {    
    18.  
    19. "_id" : ObjectId("4e2914a585178da4e03a16c3"),    
    20.  
    21. "user" : "sa",    
    22.  
    23. "readOnly" : false,    
    24.  
    25. "pwd" : "75692b1d11c072c6c79332e248c4f699"    
    26.  
    27. }    
    28.  
    29. >    

    這樣就說明 已經成功建立了,然後我們試一下許可權。

     
    1. > show collections    
    2.  
    3. system.indexes    
    4.  
    5. system.users   

    在沒有加--auth的情況下 可以正常訪問admin喜愛預設的兩個表。

     
    1. > db.system.users.find()    
    2.  
    3. { "_id" : ObjectId("4e2914a585178da4e03a16c3"), "user" : "sa", "readOnly" : false, "pwd" : "75692b1d11c072c6c79332e248c4f699" }>    

    已經成功建立。

    下面把服務加上--auth的選項,再進入./mongo。

     
    1. MongoDB shell version: 1.8.2    
    2.  
    3. connecting to: test    
    4.  
    5. > use admin    
    6.  
    7. switched to db admin    
    8.  
    9. > show collections    
    10.  
    11. Fri Jul 22 14:38:49 uncaught exception: error: {    
    12.  
    13. "$err" : "unauthorized db:admin lock type:-1 client:127.0.0.1",    
    14.  
    15. "code" : 10057    
    16.  
    17. }    
    18.  
    19. >    

    可以看出已經沒有存取權限了。

    我們就用自己的密鑰登入下:

     
    1. > db.auth('sa','sa')    
    2.  
    3. 1   

    返回1說明驗證成功!

    再show collections下就成功了。

    .....

    我們登入其它表試試:

     
    1. [root@:/usr/local/mongodb/bin]#./mongo    
    2.  
    3. MongoDB shell version: 1.8.2    
    4.  
    5. connecting to: test    
    6.  
    7. > use test    
    8.  
    9. switched to db test    
    10.  
    11. > show collections    
    12.  
    13. Fri Jul 22 14:40:47 uncaught exception: error: {    
    14.  
    15. "$err" : "unauthorized db:test lock type:-1 client:127.0.0.1",    
    16.  
    17. "code" : 10057    
    18.  
    19. }   

    也需要驗證,試試super admin登入:

     
    1. [root@:/usr/local/mongodb/bin]#./mongo    
    2.  
    3. MongoDB shell version: 1.8.2    
    4.  
    5. connecting to: test    
    6.  
    7. > use test    
    8.  
    9. switched to db test    
    10.  
    11. > show collections    
    12.  
    13. Fri Jul 22 14:40:47 uncaught exception: error: {    
    14.  
    15. "$err" : "unauthorized db:test lock type:-1 client:127.0.0.1",    
    16.  
    17. "code" : 10057    
    18.  
    19. }    
    20.  
    21. > db.auth('sa','sa')    
    22.  
    23. 0   

    返回0驗證失敗。 

    好吧,不繞圈子,其實super admin必須從admin那麼登入 然後 再use其它表才可以。

     
    1. > use admin    
    2.  
    3. > use admin  
    4.  
    5. switched to db admin    
    6.  
    7. > db.auth('sa','sa')    
    8.  
    9. 1    
    10.  
    11. > use test    
    12.  
    13. switched to db test    
    14.  
    15. > show collections    
    16.  
    17. >    

    如果想單獨訪問一個表,用獨立的使用者名稱,就需要在那個表裡面建相應的user。

     
    1. [root@:/usr/local/mongodb/bin]#./mongo    
    2.  
    3. MongoDB shell version: 1.8.2    
    4.  
    5. connecting to: test    
    6.  
    7. > use admin    
    8.  
    9. switched to db admin    
    10.  
    11. > db.auth('sa','sa')    
    12.  
    13. 1    
    14.  
    15. > use test    
    16.  
    17. switched to db test    
    18.  
    19. > db.addUser('test','test')    
    20.  
    21. {    
    22.  
    23. "user" : "test",    
    24.  
    25. "readOnly" : false,    
    26.  
    27. "pwd" : "a6de521abefc2fed4f5876855a3484f5"    
    28.  
    29. }    
    30.  
    31. >    

    當然必須有相關許可權才可以建立。

    再登入看看:

     
    1. [root@:/usr/local/mongodb/bin]#./mongo    
    2.  
    3. MongoDB shell version: 1.8.2    
    4.  
    5. connecting to: test    
    6.  
    7. > show collections    
    8.  
    9. Fri Jul 22 14:45:08 uncaught exception: error: {    
    10.  
    11. "$err" : "unauthorized db:test lock type:-1 client:127.0.0.1",    
    12.  
    13. "code" : 10057    
    14.  
    15. }    
    16.  
    17. > db.auth('test','test')    
    18.  
    19. 1    
    20.  
    21. > show collections    
    22.  
    23. system.indexes    
    24.  
    25. system.users    
    26.  
    27. >    

     
    相關文章

    聯繫我們

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