Centos下安装Redis

  • 检查安装依赖程序

    yum install gcc-c++
    yum install -y tcl
  • 获取安装文件

    wget http://download.redis.io/releases/redis-3.2.9.tar.gz
    tar xzf redis-3.2.9.tar.gz
    mv redis-3.2.9 /usr/local/redis
  • 进入目录

    cd /usr/local/redis
  • 编译安装

    make
    make install
  • 设置配置文件目录

    mkdir -p /etc/redis
    cp redis.conf /etc/redis
  • 修改配置文件

    vim /etc/redis/redis.conf
    daemonize yes (no -> yes)
  • 启动

    /usr/local/bin/redis-server /etc/redis/redis.conf
  • 查看启动

    ps -ef | grep redis
  • 使用客户端

    redis-cli
    set name Joe
    Ok
  • 关闭客户端

    redis-cli shutdown
  • 开机启动配置

    # 开机启动要配置在 rc.local 中,而 /etc/profile 文件,要有用户登录了,才会被执行。
    echo "/usr/local/bin/redis-server /etc/redis/redis.conf &" >> /etc/rc.local
    原文作者:Rhinoceros
    原文地址: https://segmentfault.com/a/1190000009557763
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞