Redis windows安装

1. 下载windows版本:[下载地址](https://github.com/microsoftarchive/redis/tags)

2. 解压缩

3. 设置为windows服务:

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

4. 常用控制命令:

        卸载服务:redis-server --service-uninstall

        开启服务:redis-server --service-start

                直接启动可能会出现1607错误, 此时直接在解压缩的文件夹根路径里加入一个名为logs的文件夹即可启动成功。

        停止服务:redis-server --service-stop

5. 命令行启动Redis:redis-server.exe redis.windows.conf




你可能感兴趣的:(Redis windows安装)