記錄一次php7-mongodb擴充的坑

來源:互聯網
上載者:User

標籤:src   log   manage   tps   int   www   text   googl   eve   

CentOS 安裝PHP 7的mongodb擴充遇到的坑

 

本人在docker上部署PHP環境時,安裝MongoDB擴充遇到了一個坑: 
PHP Fatal error: Uncaught MongoDB\Driver\Exception\AuthenticationException: The “SCRAM-SHA-1” authentication mechanism requires libmongoc built with –enable-ssl 
此錯誤應該僅會出現在設定了需要登入驗證的MongoDB上。

一開始時沒多想,在PECL上找到MongoDB的擴充後,直接編譯:

phpize./configuremakemake install

簡單寫了測試代碼測試了下,就出現以下錯誤: 
PHP Fatal error: Uncaught MongoDB\Driver\Exception\AuthenticationException: The “SCRAM-SHA-1” authentication mechanism requires libmongoc built with –enable-ssl in /var/www/html/mongo.php:8\nStack trace:\n#0 /var/www/html/mongo.php(8): MongoDB\Driver\Manager->executeBulkWrite(‘test.tb’, Object(MongoDB\Driver\BulkWrite))\n#1 {main}\n thrown in /var/www/html/mongo.php on line 8

起先懷疑是./configure時需要加上一些選項參數,通過./configure --help裡找相關類似於上面錯誤提示裡所說的--enable-ssl選項,目標鎖定: 
 
然而即便加上此選項後:./configure --with-mongodb-ssl,再重新編譯,也依舊無用。

百度一圈找不到解決方案後,就Google了一下,果然發現了問題的關鍵: 

問題就出在phpinfo的mongodb擴充資訊上的紅框裡的disabled上。

其實根本原因就是我使用的docker鏡像太乾淨了,連openssl都沒有,於是先裝上openssl:

yum install -y openssl openssl-devel
  • 1

重新編譯一下mongodb擴充(./configure不需加上面所說的選項參數,因為其實預設值就是--with-mongodb-ssl=auto了),再去phpinfo裡看: 

果然有所不同,再運行測試代碼,測試成功!

記錄一次php7-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.