How to Install PHP MongoDB Driver for XAMPP on OSX?

て烟熏妆下的殇ゞ 提交于 2019-12-03 08:47:02

You need to start mongod

brew update

brew install mongodb

mkdir -p /data/db

mongod --dbpath /data/db

Before running mongod for the first time, ensure that the user account running mongod has read and write permissions for the /data/db directory.

Install MongoDB PHP driver

brew install php56-mongo

OR

sudo pecl install mongo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!