//下载memcache安装包
wget http://pecl.php.net/get/memcache-3.0.6.tgz

//解压
tar -zxvf memcache-3.0.6.tgz
cd memcache-3.0.6

//运行phpize并安装memcache
/alidata/server/php-5.4.27/bin/phpize
./configure --enable-memcache --with-php-config=/alidata/server/php-5.4.27/bin/php-config --with-zlib-dir

make && make install

//查看.so文件是否存在
cd /alidata/server/php/lib/php/extensions/no-debug-non-zts-20100525/

//修改php.ini配置
vi /alidata/server/php-5.4.27/etc/php.ini

//重启php服务
/etc/rc.d/init.d/php-fpm restart

//查看扩展是否存在
php -m

//启动服务
memcache -d

©著作权归作者所有

发表评论