admin 管理员组

文章数量: 887021

目录

    • Redis Windows 下载、安装
      • 1 官网地址
      • 2 下载后解压
      • 3 修改`redis.windows.conf`文件
      • 4 启动Redis
    • Redis可视化工具
      • AnotherRedisDesktopManager (免费)(推荐)
      • RedisDesktopManager (不支持集群)(新版收费)
      • FastoRedis (支持集群)(收费)
    • 推荐文章


Redis Windows 下载、安装

Windows 版本主要是方便初学者学习redis,推荐使用【Linux版本】

1 官网地址

windows版官方下载地址

这里以预发行版3.2.100为例

2 下载后解压

3 修改redis.windows.conf文件

修改密码为root,这里以admin为例,实际自行配置)

requirepass root

4 启动Redis

win + R 输入 cmd,进入Redis的安装目录下

  • 启动服务端
redis-server redis.windows.conf

  • 启动客户端
redis-cli -h 127.0.0.1 -p 6379 -a root

这里的root是上面配置文件中配置的密码

如果报错(error) ERR operation not permitted,使用auth 密码进行验证


Redis可视化工具

  • AnotherRedisDesktopManager (免费)(推荐)

AnotherRedisDesktopManager 使用

  • RedisDesktopManager (不支持集群)(新版收费)

链接:https://pan.baidu/s/1efPy6gQwfTuK7mC6I23E1w
提取码:3s36
官方GitHub地址: https://github/uglide/RedisDesktopManager/releases

  • FastoRedis (支持集群)(收费)

官方下载地址: https://fastoredis/anonim_users_downloads



推荐文章

2021 强烈推荐几款常用Redis可视化工具

本文标签: 图文 工具 redis Windows