GitHub项目:https://github.com/redis-windows/redis-windows
下载解压
安装服务
1
2
3
4
|
sc.exe create Redis binpath=RedisService.exe详细所在位置 start= auto
# 例如
sc.exe create Redis binpath=D:\develop\Redis-7.2.4-Windows-x64-cygwin-with-Service\RedisService.exe start= auto
|
服务启动停止
1
2
3
4
5
6
7
8
|
# 启动
net start Redis
# 停止
net stop Redis
# 删除服务
sc.exe delete Redis
|