mongodb串連失敗原因排查

來源:互聯網
上載者:User

標籤:blog   http   io   os   ar   資料   sp   2014   問題   

安裝了mongodb,添加了管理員root和test資料庫的使用者rex,並且開啟的使用者認證。

按照說明文檔串連mongodb資料庫:$mongo = new Mongo("mongodb://rex:[email protected]");

結果開啟firebug之後發現報錯:"NetworkError: 500 Internal Server Error - http://192.168.202.132/montest.php"

在這裡嘗試了很多方法都無法解決,也不清楚為什麼出了錯,只能再看一遍php的官方文檔(http://php.net/manual/zh/mongoclient.construct.php)

偶然看到這麼一句:如果給出的主機都無法串連,將會拋出 MongoConnectionException 異常。

於是我開始嘗試列印這個異常:

try {     $mongo = new Mongo("mongodb://rex:[email protected]"); } catch (Exception $e) {     print $e->getMessage();     exit();   } 

輸出結果是:Failed to connect to: localhost:27017: Authentication failed on database ‘admin‘ with username ‘rex‘: auth failed

一看便知:rex是test資料庫的使用者,可是代碼確實預設串連資料庫admin,問題就出在這裡!

於是改成:$mongo = new Mongo("mongodb://rex:[email protected]/test");

問題解決!


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.