zoukankan      html  css  js  c++  java
  • Redis Install [ Windows && Linux ]

    Redis Install

    一  Windows Install 

    step 1 : download redis

        https://github.com/MSOpenTech/redis/releases

    step 2 :  modify redis.conf 

        redis/bin/

          redis-server  :    redis server 

          redis-cli     :    redis client command line interface

          redis-benchmark:     check  redis performance

          redis-check-aof  :     AOF repair tool

          redis-check-dump:   RDB check tool

          redis.conf     :    redis config file 

      

    step 3 : start / stop redis 

        start redis-server :

          redis-server  or redis-server D:redis/redis.conf

        stop redis-server :

          shutdown or kill pid

    二 、  Linux install

    1  source install

      step 1 : $wget http://download.redis.io/releases/redis-3.0.1.tar.gz

           $tar -zxvf redis-3.0.1.tar.gz 

           $cd redis-3.01

                      $make 

           $make install

      step 2 && step 3   And the same as above

     

      

  • 相关阅读:
    第三方登录的原理
    浅谈算法的时间复杂度和空间复杂度
    python3的全局变量和局部变量
    python3的嵌套函数
    HTTP协议学习-03
    HTTP协议学习-02
    HTTP协议学习-01
    织梦模板修改方法大全
    java常用用代码
    java学用代码
  • 原文地址:https://www.cnblogs.com/Nancy0401/p/5505942.html
Copyright © 2011-2022 走看看