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

 

  

原文地址:https://www.cnblogs.com/Nancy0401/p/5505942.html