1、Window 下安装
下载地址:https://github.com/MSOpenTech/redis/releases。
2、配置redis.windows.conf
bind 127.0.0.1
port 9011
3、启动
redis-server.exe redis.windows.conf
4、添加密码
可以通过以下命令查看是否设置了密码验证:
redis-cli.exe -h 127.0.0.1 -p 6379
CONFIG get requirepass
CONFIG set requirepass “123456”