zoukankan      html  css  js  c++  java
  • 如何安装最新版本的memcached

    转载自孟叔的博客:  https://learndevops.cn/index.php/2016/06/10/how-to-install-the-latest-version-of-memcached/

    在现代的互联网系统中,memcached几乎是一个必须的组件了,用途广泛,很好很强大。

    在CentOS 6系统中,无需任何配置,即可通过yum install memcached命令安装好memcached,但这个版本是古老的1.4.4版本,而最新的memcached版本已经是1.4.25了,大家可以查看memcached的Release Notes来了解更新的具体内容。

    我们可以通过第三方软件源Remi来安装最新版本的memcached,具体过程如下:

    一、安装Remi软件源:

    yum install -y http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

    remi_yum_install.png

    二、安装最新版本的memcached软件:

    yum install –enablerepo=remi -y memcached

    memcached_yum_install.png

    三、启动memcached并设置为随系统自动启动:

    service memcached start

    chkconfig memcached on

    service_memcached_start.png

    然后我们可以使用telnet连接memcached服务确认版本:

    version.png

  • 相关阅读:
    jsp登录显示
    flask 分页
    module pip has no attribute main
    html active属性
    Centos7配置
    python爬虫笔记----4.Selenium库(自动化库)
    python爬虫笔记
    python报错记录
    mybatis逆向文件
    python简单验证码
  • 原文地址:https://www.cnblogs.com/mingaixin/p/5588776.html
Copyright © 2011-2022 走看看