Windows环境安装redis

1、下载redis

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


2、解压

.zip


3、更改文件名

更改文件名称为:redis


4、将本地解压后的redis,作为本地服务器下的应用服务

  • 从redis文件路径下,执行cmd
java 复制代码
.\redis-server --service-install redis.windows.conf --loglevel verbose

5、启动本地服务器上的redis服务

找到Redis,右键-启动


6、客户端CMD:连接Redis服务使用

  • 从redis文件路径下,执行cmd

    redis-cli.exe -h 127.0.0.1 -p 6379

  • 执行redis的操作

    set myKey 123

    get myKey


7、安装客户端工具:Another redis Desktop Manage

  • 直接执行下载后的 Another-Redis-Desktop-Manager.1.6.4.exe ,安装客户端到本地

8、客户端工具Another redis Desktop Manage:连接Redis服务端使用

  • 127.0.0.1
  • 6379

9、redis手册中文文档

https://redis.com.cn/

http://doc.redisfans.com/

相关推荐
MaCa .BaKa2 小时前
35-疫苗预约管理系统(微服务)
spring boot·redis·微服务·云原生·架构·springcloud
互联网搬砖老肖4 小时前
运维打铁:Centos 7 安装 redis_exporter 1.3.5
运维·redis·centos
我的golang之路果然有问题4 小时前
案例速成GO+redis 个人笔记
经验分享·redis·笔记·后端·学习·golang·go
LCY1334 小时前
python 与Redis操作整理
开发语言·redis·python
lovebugs7 小时前
Redis高可用架构全解析:主从复制、哨兵模式与集群实战指南
redis·后端·面试
南隅。8 小时前
【Redis】基础2:作为缓存
redis·缓存
TE-茶叶蛋9 小时前
Redis 原子操作
数据库·redis·缓存
chxii11 小时前
18.2.go语言redis中使用lua脚本
redis·go·lua
李菠菜12 小时前
Redis主从/哨兵/集群离线部署指南
linux·运维·redis
BruceNeter12 小时前
C# 使用StackExchange.Redis实现分布式锁的两种方式
redis·c#