一、 下载windows版本的Redis
github下载地址:https://github.com/MSOpenTech/redis/tags
我下载的是:Redis-x64-3.2.100.zip
二、 解压下载好的版本到Redis目录(路径不能有中文和空格)
三、 在运行中输入cmd,启动命令redis-server redis.windows.conf,出现下图显示表示启动成功了。
四、 设置Redis服务
redis-server --service-install redis.windows-service.conf --loglevel verbose
五、常用的redis服务命令。
卸载服务:redis-server --service-uninstall
开启服务:redis-server --service-start
停止服务:redis-server --service-stop
六、 客户端连接测试