• centos7编译安装memcached


    1.libevent

      源码地址:https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz

      1)  ./configure --prefix=/usr --disable-static

      2) make && make install

    2.memcached

       源码地址: http://www.memcached.org/files/memcached-1.4.24.tar.gz

       1) ./configure --prefix=/usr/local/memcached-1.4.24/  --with-libevent=/usr

       2) make && make install

    3.启动memcahed

      /usr/local/memcached-1.4.24/bin/memcached -d -u root -l 127.0.0.1 -p 11211 -m 100 -P /var/run/memcached_11211.pid

      -d:  守护进程模式运行

      -m: 分配内存

      -P: pid文件保存位置

    4.终止memcahed

    kill cat memcached_11211.pid

    5.libmemcached

    源码地址: https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz 
       1) ./configure --prefix=/usr/local/libmemcached-1.0.18

       2) make && make install

    6.php7版本下安装 php-memcached 扩展

      1) get clone  https://github.com/php-memcached-dev/php-memcached -b php7 php-memcached

      2) tar zxvf  php-memcached

      3) cd php-memcached

      4) phpize

           5) ./configure --enable-memcached --with-php-config=/usr/local/php/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached-1.0.18 --disable-memcached-sasl

           6) make && make install

    安装成功后,vim php.ini ,添加extension=memcached.so,重启php-fpm。



      

  • 相关阅读:
    堆排序
    2019晋城一中开放日
    严格次小生成树
    遥远的国度
    noip2018游记
    Luogu1736 创意吃鱼法
    P3958 奶酪
    Luogu3385 负环
    Luogu1040 加分二叉树
    Luogu1007 独木桥
  • 原文地址:https://www.cnblogs.com/AndrewGhost/p/8994977.html
Copyright © 2020-2023  润新知