Redis6 及以后版本安装为 windows 服务

网上安装 redis 为 windows 服务的教程大多基于 redis3 编写的,然而这并不适用于 redis 更高的版本。redis 高版本安装为服务应使用如下方法:

一定要安在 Redis for Windows Release 中下载 xxx-Service 版本 来安装。

以管理员身份运行终端:

1
2
3
4
5
6
7
8
9
10
11
# 创建 redis 服务
sc create Redis binpath=C:\Software\Redis\RedisService.exe start=auto

# 启动服务
net start Redis

# 关闭服务
net stop Redis

# 卸载服务
sc delete Redis

参考:

https://github.com/redis-windows/redis-windows