安装 Memcached
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装 Memcached相关的知识,希望对你有一定的参考价值。
一、安装注意事项
(1) 设置环境变量 :echo ‘export LC_ALL=C‘ >> /etc/profile && source /etc/profile
(2) 安装 perl 依赖:yum install -y perl-devel
二、安装 Memcached 客户端
wget -q http://pecl.php.net/get/memcache-2.2.7.tgz
tar zxf memcache-2.2.7.tgz
cd memcache-2.2.7
/usr/local/php/bin/phpize
./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config
make && make install
cd ..
rm -rf memcache-2.2.7*
ls /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/
以上是关于安装 Memcached的主要内容,如果未能解决你的问题,请参考以下文章