Spring boot串連3.03以上的mongodb 許可權驗證問題

來源:互聯網
上載者:User

標籤:...   mat   出現   min   xxxxxx   bow   modified   users   odi   

由於3.0.3,mongodb加入了SCRAM-SHA-1校正方式,需要第三方工具配合進行驗證,所有Spring boot串連MongoDB時會出現使用者認證失敗。

解決方案:

> use admin switched to db admin >  var schema = db.system.version.findOne({"_id" : "authSchema"}) > schema.currentVersion = 3 3 > db.system.version.save(schema) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 }) 

刪除原來建立的已經使用了SCRAM-SHA-1認證方式的使用者

> use admin switched to db admin > db.system.users.find() [...] { "_id" : "userdb.myuser", "user" : "myuser", "db" : "userdb", "credentials" : { "SCRAM-SHA-1" : { "iterationCount" : 10000, "salt" : "XXXXXXXXXXXXXXXXXXXXXXXX", "storedKey" : "XXXXXXXXXXXXXXXXXXXXXXXXXXX", "serverKey" : "XXXXXXXXXXXXXXXXXXXXXXXXXXX" } }, "roles" : [ { "role" : "dbOwner", "db" : "userdb" } ] } 
> use userdb switched to db userdb > db.dropUser("myuser") true >db.createUser({user:‘myuser‘,pwd:‘123456‘,roles:[{role:‘dbOwner‘,db:‘userdb‘}]}) 

然後關閉伺服器,開啟認證,重啟伺服器!!

Spring boot串連3.03以上的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.