Windows下Redis下载地址和后台启动停止命令
Redis下载地址:https://github.com/MicrosoftArchive/redis/releases
可视化工具下载地址:https://github.com/qishibo/AnotherRedisDesktopManager/releases
设置后台启动
- 进入下载解压好的目录,修改配置文件
redis.windows.conf
- 注释
bind 127.0.0.1
- 将redis默认的守护关闭,即:将
protected-mode yes
修改为protected-mode no
没有就不改 - 切换到redis的安装目录,输入以下命令:注册服务
redis-server.exe --service-install redis.windows.conf --loglevel verbose
- 启动redis
redis-server --service-start
- 停止redis
redis-server --service-stop
注意:启动和停止都需要在redis的安装目录下