Heim  >  Artikel  >  Datenbank  >  Lnmp安装MongoDB以及PHP扩展

Lnmp安装MongoDB以及PHP扩展

WBOY
WBOYOriginal
2016-06-07 16:31:131058Durchsuche

MongoDB安装 wget -c http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.4.1.tgz tar zxvf mongodb-src-r2.4.1.tar.gz mv mongodb-linux-i686-2.4.1 /usr/local/mongodb//usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data/ --logpath=/u

MongoDB安装

wget -c  http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.4.1.tgz                 
tar zxvf mongodb-src-r2.4.1.tar.gz                 
mv mongodb-linux-i686-2.4.1 /usr/local/mongodb/
/usr/local/mongodb/bin/mongod --dbpath=/usr/local/mongodb/data/ --logpath=/usr/local/mongodb/dblogs --fork

启动以后可以查看mongodb进程树

pstree -p |grepmongod

PHP MongoDB 扩展

wget http://pecl.php.net/get/mongo-1.3.6.tgz             
/usr/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
/usr/local/php/etc/php.ini             
extension=mongo.so;

关闭注意
这里禁止使用 kill -9 PID 关闭mongodb进程,会导致mongod.lock导致再一次无法开启mongodb,必须删除mongod.lock再能开启
可以使用pkill mongod 或者 killall mongod 来结束mongodb进程

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Hadoop之MapReduce单元测试Nächster Artikel:hadoop最近心得文档整理