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

     

      

  • 相关阅读:
    任务总结四
    任务总结三
    任务总结二
    【大道至简】读后感
    人月神话
    12-13 库存信息管理系统
    12-9java web 数据库增删改查
    11-15课堂测试
    11-10关于java项目的异常处理
    11-10 动手动脑
  • 原文地址:https://www.cnblogs.com/Nancy0401/p/5505942.html
Copyright © 2011-2022 走看看