windows7 64下redis安装

时间:2024-08-10 15:08:14

1.redis官方下载地址:https://redis.io/download

redis 64位下载地址:https://github.com/ServiceStack/redis-windows,本人测试使用的是redis-64.3.0.503版本

2.解压redis-64.3.0.503.zip到想要的目录:

3.修改redis.windows.conf文件,设置:maxmemory=1024000000 
设置redis密码:requirepass 123456

4.启动redis:

redis-server.exe redis.windows.conf

windows7 64下redis安装

5.将redis加入到windows的服务中(service和loglevel前都是两个-)
redis-server –service-install redis.windows.conf –loglevel verbose

6. 常用的redis服务命令。

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

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

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

记录

部分参考:https://www.cnblogs.com/lezhifang/p/7027903.html