60 lines
2.2 KiB
Markdown
60 lines
2.2 KiB
Markdown
### [English](https://github.com/redis-windows/redis-windows/blob/main/README.md) | [简体中文](https://github.com/redis-windows/redis-windows/blob/main/README.zh_CN.md)
|
||
|
||
# Redis Windows版本
|
||
|
||
### 借助GitHub Actions强大的自动化构建能力,为我们实时编译适用于Windows系统的Redis最新版本
|
||
|
||
整个编译过程完全公开透明, 编译脚本在[.github/workflows/](https://github.com/redis-windows/redis-windows/tree/main/.github/workflows) 目录中,编译日志可在 [Actions](https://github.com/redis-windows/redis-windows/actions)页面查看。此外,我们在编译结束,新增了哈希值计算环节,计算结果打印在日志中,这是任何人不可修改的,并写入发布页面。您可以核对下载到本地的文件的哈希值,是否与日志和发布页面的一致。本项目绝对纯洁无私货,经得起各位大佬审查。如您有好的想法,也欢迎交流。
|
||
|
||
|
||
### 提供三种运行模式
|
||
|
||
直接运行项目中的 start.bat 脚本,一键启动
|
||
|
||
或者使用命令行
|
||
|
||
还支持以系统服务运行
|
||
|
||
|
||
## 命令行启动
|
||
cmd 启动
|
||
```shell
|
||
redis-server.exe redis.conf
|
||
```
|
||
powershell 启动
|
||
```shell
|
||
./redis-server.exe redis.conf
|
||
```
|
||
|
||
## 安装服务
|
||
可实现开机自启动
|
||
请以管理员身份运行,并将RedisService.exe改为您实际存放的路径
|
||
|
||
```shell
|
||
sc.exe create Redis binpath=C:\Software\Redis\RedisService.exe start= auto
|
||
```
|
||
启动服务
|
||
```shell
|
||
net start Redis
|
||
```
|
||
停止服务
|
||
```shell
|
||
net stop Redis
|
||
```
|
||
卸载服务
|
||
```shell
|
||
sc.exe delete Redis
|
||
```
|
||
|
||

|
||
|
||
|
||
项目主页: https://github.com/redis-windows/redis-windows
|
||
|
||
### 鸣谢
|
||
[](https://www.zhihu.com/question/424272611/answer/2611312760)
|
||
[](https://www.jetbrains.com/?from=redis-windows)
|
||
|
||
### 免责声明
|
||
建议您在本地开发环节使用,生产环境请按照Redis官方指导,在Linux中部署。本项目不承担由此给您带来的任何损失,仅供学习交流。
|