Windows安装Redis(解压版)

  1. Redis下载、解压
    旧版:https://github.com/microsoftarchive/redis/releases
    新版:https://github.com/tporadowski/redis/releases
    Windows安装Redis(解压版)_第1张图片
    Windows安装Redis(解压版)_第2张图片
    Windows安装Redis(解压版)_第3张图片
  2. Redis环境变量
    Windows安装Redis(解压版)_第4张图片
  3. Redis服务安装
    注意:安装命令要在安装目录下执行,否则找不到配置文件redis.windows-service.conf
    安装:redis-server --service-install redis.windows-service.conf --loglevel verbose
    卸载:redis-server --service-uninstall
    启动:redis-server --service-start
    关闭:redis-server --service-stop
    安装并启动多个Redis服务:
    redis-server --service-install --service-name redisService1 --port 10001
    redis-server --service-start --service-name redisService1
    redis-server --service-install --service-name redisService2 --port 10002
    redis-server --service-start --service-name redisService2
    redis-server --service-install --service-name redisService3 --port 10003
    redis-server --service-start --service-name redisService3
  4. Redis启动报错1067(缺少日志目录Logs)
    Windows安装Redis(解压版)_第5张图片
    Windows安装Redis(解压版)_第6张图片
    Windows安装Redis(解压版)_第7张图片
  5. Redis在线文档
    http://www.redis.cn/documentation.html
    Windows安装Redis(解压版)_第8张图片
  6. Redis可视化工具
    https://pan.baidu.com/s/1M5VED5DYc3D32Gbf6TEhsA?pwd=kldo
    Windows安装Redis(解压版)_第9张图片
    Windows安装Redis(解压版)_第10张图片

你可能感兴趣的:(redis,windows,redis可视化工具)