mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-08 17:07:33 +08:00
12 lines
265 B
Bash
Executable File
12 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# install mongodb
|
|
|
|
echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
sudo sh -c 'echo "setParameter = textSearchEnabled=true" >> /etc/mongodb.conf'
|
|
cat /etc/mongodb.conf
|
|
|
|
mongod --version
|
|
|
|
sudo service mongodb restart
|