Install memcached on CentOS 5
First step, you’ll need to add the EPEL repository to Yum.
Once you’ve done that, you can install all the YUM packages.
yum -y install memcached.x86_64 libmemcache.x86_64 libmemcache-devel.x86_64 zlib-devel.x86_64
Then add the memcache extension to PHP.
pecl install memcache
Add the extension to your PHP configuration.
extension=memcache.so
Configure memcached appropriately.
vi /etc/sysconfig/memcached
add OPTIONS="-l 127.0.0.1"
Configure it as a service, and start.
chkconfig memcached on
service memcached start
First step, you’ll need to add the EPEL repository to Yum.
Once you’ve done that, you can install all the YUM packages.
yum -y install memcached.x86_64 libmemcache.x86_64 libmemcache-devel.x86_64 zlib-devel.x86_64
Then add the memcache extension to PHP.
pecl install memcache
Add the extension to your PHP configuration.
extension=memcache.so
Configure memcached appropriately.
vi /etc/sysconfig/memcached add OPTIONS="-l 127.0.0.1"
Configure it as a service, and start.
chkconfig memcached on service memcached start