欢迎来到代码驿站!

Redis

当前位置:首页 > 数据库 > Redis

win 7 安装redis服务【笔记】

时间:2020-12-09 21:04:52|栏目:Redis|点击:

win 7 安装redis服务

Redis官方是不支持windows的,只是 Microsoft Open Tech group 在 GitHub上开发了一个Win64的版本,项目地址是: https://github.com/MSOpenTech/redis

win 7 安装redis服务目录下载 redis安装 redis解压文件新建批处理文件

下载 redis

打开 https://github.com/MSOpenTech/redis 地址如图:
github redis window版

点击releases 选择相应的版本(以Redis-x64-3.0.501.zip为例):
redis 发布版本

安装 redis解压文件

将下载的压缩文件解压到安装目录下, 例如:我安装在E:\service\Redis-x64-3.0.501

redis目录

新建批处理文件

1、 在redis目录下新建安装redis服务批处理文件 install.bat(双击即可安装)。

redis-server.exe --service-install redis.windows.conf --loglevel verbose

2、在redis目录下新建开启、关闭服务批处理文件 redis-toggle.bat。

@echo off
for /f "skip=3 tokens=4" %%i in ('sc query Redis') do set "zt=%%i" &goto :next
:next
if /i "%zt%"=="RUNNING" (
 redis-server.exe --service-stop
 echo redis stopped。
) else (
 redis-server.exe --service-start
 echo redis running now。
)

pause>nul

3、在redis目录下新建卸载redis服务批处理文件 uninstall.bat。

redis-server --service-uninstall

上一篇:Redis 集群搭建和简单使用教程

栏    目:Redis

下一篇:Redis教程(十二):服务器管理命令总结

本文标题:win 7 安装redis服务【笔记】

本文地址:http://www.codeinn.net/misctech/31048.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有