標籤: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
重新編譯一下mongodb擴充(./configure
不需加上面所說的選項參數,因為其實預設值就是--with-mongodb-ssl=auto
了),再去phpinfo裡看:
果然有所不同,再運行測試代碼,測試成功!
記錄一次php7-mongodb擴充的坑