windows 配置 redis

2022-09-20 23:21:59 浏览数 (1)

redis低版本有漏洞,尤其要注意安全,linux上redis已经到7了,windows还在3

Linux:https://download.redis.io/releases/

Windows:https://github.com/MicrosoftArchive/redis/releases

redis要公网访问得bind 0.0.0.0,bind 内网ip不行,这一点跟其他软件不同

redis配置文件里改成bind 0.0.0.0就可以通过公网访问了,但是这样无疑加大了风险

redis一般是需要在配置文件里设置密码的(#requirepass 后面跟密码,去掉注释就设置密码了)

下载.zip,解压,拷贝一份redis.windows.conf以备不时之需,然后修改redis.windows.conf

主要改2处:

bind xxx.xxx.xxx.xxx

requirepass xxxx

然后进到目录,执行redis-server.exe redis.windows.conf 启动服务端,

客户端的话,用redis-cli

在客户端执行redis-cli -h IP -p 6379 -a 密码

或者先执行redis-cli -h IP -p 6379回车,然后执行auth 密码

0 人点赞