debian wheezy 编译 php5-memcached
debian wheezy的软件包php5-memcached 没有igbinary支持,也没有提供php5-igbinary
由于业务需要,手动编译添加igbinary支持。
#删除php5-memcached软件包apt-get remove php5-memcached#安装igbinarypecl install igbinaryecho "extension=igbinary.so" >/etc/php5/fpm/conf.d/20-igbinary.ini#安装编译依赖包apt-get install php5-dev make libmemcached-dev pkg-config#下载并编译源码包pecl download memcachedtar zxvf memcached*.tgzcd memcached*/phpize./configure --enable-memcached-igbinary --disable-memcached-saslmakemake installecho "extension=memcached.so" >/etc/php5/fpm/conf.d/20-memcached.ini
新的模块分别是
/usr/lib/php5/20100525/igbinary.so/usr/lib/php5/20100525/memcached.so
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。