windows的redis连不上的解决方法
1、异常信息提示无法连接到端口为6379(redis端口),确认redis是否正确启动?
2、也有可能是Redis运行在保护模式,则建议同学关闭保护模式试一下。
1)打开配置文件(redis.conf)把下面对应的注释掉
1
|
# bind 127.0.0.1 |
2)将保护模式修改为为no
1
|
protected-mode no |
1
|
daemonize no |
1
|
redis-server redis.conf |