mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-22 17:48:37 +08:00
13 lines
260 B
Bash
Executable File
13 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# install mongodb
|
|
|
|
mongod --version
|
|
|
|
echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
|
|
# enable text search
|
|
mongo --eval 'db.adminCommand( { setParameter: true, textSearchEnabled : true})'
|
|
|
|
cat /etc/mongodb.conf
|