美文网首页
linux使用memcache

linux使用memcache

作者: hello大象 | 来源:发表于2017-12-06 16:59 被阅读0次

    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

    相关文章

      网友评论

          本文标题:linux使用memcache

          本文链接:https://www.haomeiwen.com/subject/ayhlixtx.html