zoukankan      html  css  js  c++  java
  • centos6安装redis

    1. 检查安装依赖程序

      yum install gcc-c++
      yum install -y tcl
      yum install wget

    2. 获取安装文件

      wget http://download.redis.io/releases/redis-2.8.13.tar.gz

    3. 解压文件

      tar -xzvf redis-2.8.19.tar.gz
      mv redis-2.8.19 /usr/local/redis

    4. 进入目录

      cd /usr/local/redis

    5. 编译安装

      make
      make install

    6. 设置配置文件路径

      mkdir -p /etc/redis
      cp redis.conf/etc/redis

    7. 修改配置文件

      vi /etc/redis/redis.conf
      仅修改: daemonize yes (no-->yes)

    8. 启动

      /usr/local/bin/redis-server /etc/redis/redis.conf

    9. 查看启动

      ps -ef | grep redis

    10. 使用客户端
      ```
      redis-cli

      set name david
      OK
      get name
      "david"
      ```

    11. 关闭客户端

      redis-cli shutdown

    12. 开机启动配置

      echo "/usr/local/bin/redis-server /etc/redis/redis.conf &" >> /etc/rc.local

    开机启动要配置在 rc.local 中,而 /etc/profile 文件,要有用户登录了,才会被执行。

  • 相关阅读:
    11月21日
    11月20日
    11月19日
    11月18日
    11月17日
    11月15日
    图文教程:在Mac上搭建Titanium的iOS开发环境
    经验
    IT术语的正确读法
    NSLog( @"%@", i );
  • 原文地址:https://www.cnblogs.com/daoyi/p/centos6an-zhuangredis.html
Copyright © 2011-2022 走看看