http://blog.csdn.net/nuli888/article/details/51841405
1,开始安装memcache
查找相关软件包yum search memcache
有了,现在可以安装了
#yum -y install –enablerepo=rpmforge memcached php-pecl-memcache
#如果提示没安装成功 yum update一下 然后再执行命令 成功即把memcache服务端和php memcache扩展都安装好 会在/usr/lib64/php/modules/memcache.so
验证一下安装结果memcached -h
[root@VM_82_192_centos conf.d]# php -m|grep memcache
[root@VM_82_192_centos conf.d]# systemctl enable memcached.service
[root@VM_82_192_centos conf.d]# lsof -i tcp:11211
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
memcached 3399 memcached 26u IPv4 12677364 0t0 TCP *:memcache (LISTEN)
memcached 3399 memcached 27u IPv6 12677365 0t0 TCP *:memcache (LISTEN)
已经在侦听 说明成功 会生成memcache.so 32位在/usr/lib/中 64位在/usr/lib64/
php.ini中开启 extension=/usr/lib64/php/modules/memcache.so
[root@VM_82_192_centos conf.d]# vi /etc/php.ini
image.png
/etc/init.d/httpd restart #重启Apache
需先启动memcache
网友评论