linux php5.6 安装扩展 memcached


wget http://pecl.php.net/get/igbinary-1.1.1.tgz

tar -xzvf igbinary-1.1.1.tgz 

cd igbinary-1.1.1

/usr/local/php5.6/bin/phpize 
 ./configure --with-php-config=/usr/local/php5.6/bin/php-config
make
make install
php.ini加载  extension=igbinary.so


wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
tar zxvf libmemcached-1.0.18.tar.gz
cd libmemcached-1.0.18
./configure --prefix=/usr/local/libmemcached --with-memcached
make
make install



wget http://pecl.php.net/get/memcached-2.2.0.tgz

tar zxvf memcached-2.2.0.tgz

cd memcached-2.2.0

/usr/local/php5.6/bin/phpize 

./configure --with-php-config=/usr/local/php5.6/bin/php-config  --with-libmemcached-dir=/usr/local/libmemcached  --enable-memcached --enable-memcached-json --enable-memcached-igbinary
make
make install
php.ini加载  extension=memcached.so

重启php 查看phpinfo()是否已经正常加载memcached

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM