redis在window系统上的下载安装使用说明

位置:首页>文章>详情   分类:Java教程   阅读(1894)   2023-03-28 11:29:14
redis在window系统上的下载安装使用说明
去redis的官方网站你会发现下载下来的都是源码,支持Linux的make编译方式,并没有window版本的redis下载,其实官方有说明

Windows

The Redis project does not officially support Windows. However, the Microsoft Open Tech group develops and maintains this Windows port targeting Win64. Learn more
大概就是说:
Redis项目没有正式支持Windows。 但是,Microsoft Open Tech组织开发并维护了面向Win64的Windows 64位
也就是说window版本是不是由redis官方维护的,是Microsoft Open Tech组织。其项目的GitHub地址为
http://github.com/MSOpenTech/redis

下载步骤,打开上面的url,你将看到以下界面(可能会有一点版本变化):
下载页面
下载页面


点击release
re
这时候你就可以看到下载的页面:
download redis
download redis


选择zip版或者msi版本,我这里下载的zip版本下载.


加压下载后的zip:
解压文件
解压文件


使用cmd执行命令
F:\迅雷下载\Redis-x64-3.2.100>redis-server.exe redis.windows.conf
注意前面的路径改成你自己的路径
启动redis成功
启动redis成功


到这里window系统上如何下载安装和启动redis已经完成。

将redis安装成系统服务:
redis-server.exe --service-install redis.windows.conf --loglevel verbose 

卸载服务:
redis-server --service-uninstall  
 

------------------------------------------
由网友Clay提供最新的window版本 redis 下载地址:https://github.com/tporadowski/redis/releases【感谢支持】
标签: redis
地址:https://www.leftso.com/article/141.html