转载请注明出处:https://oldnoop.tech/c/176.html
redis下载地址
http://redis.io/download
http://www.redis.cn/
redis的windows版本下载地址
redis官方不支持windows系统
微软维护的redis的windows版本
https://github.com/MSOpenTech/redis
https://github.com/MSOpenTech/redis/releases
redis图形客户端下载
Redis Desktop Manager
https://redisdesktop.com/download
medis(推荐使用)
https://github.com/hs300/medis/releases/tag/win
redis在windows安装
解压缩
安装为windows服务,运行命令行cmd,进入redis安装目录,运行如下命令
redis-server --service-install redis.windows.conf
默认使用端口是6379
启动redis服务,命令行执行 net start redis,或者在windows的服务管理中启动
卸载服务
先停掉redis, 命令行执行 net stop redis, 或者在windows的服务管理中停止
然后在命令行执行 redis-server --service-uninstall 或者sc delete redis