为php5.6安装memched扩展
Posted Caleb_man
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为php5.6安装memched扩展相关的知识,希望对你有一定的参考价值。
1.由于memcached依赖于libevent,因此需要安装libevent。由于linux系统可能默认已经安装libevent,执行命令:
rpm -qa|grep libevent
查看系统是否带有该安装软件,如果有执行命令:
rpm -e libevent-1.4.13-4.el6.x86_64 --nodeps(由于系统自带的版本旧,忽略依赖删除)
2、下载安装包libevent-2.1.2-alpha.tar.gz
tar -zxvf libevent-2.1.2-alpha.tar.gz
cd libevent-2.1.2-alpha
make &&make install
3、安装libmemcached
tar -zxvf libmemcached-1.0.18.tar.gz
./configure -prefix=/usr/local/libmemcached --with-memcached
make && make install
4、安装memcached
tar -zxvf memched-2.0.2..tar.gz
./configure --prefix=/usr/local/memcached --with-libevent=/usr/local/libevent/ --with-php-config=/usr/local/odrive/php56/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached/ --disable-memcached-sasl
make && make install
以上是关于为php5.6安装memched扩展的主要内容,如果未能解决你的问题,请参考以下文章
centos7源码安装php5.6并安装pthreads扩展
在Windows下为PHP5.6安装redis扩展和memcached扩展