本文讲述了如何处理Redis运行在受保护模式下的连接问题,包括修改protected-mode设置、配置bindaddress、验证并设置密码,以及通过命令行和telnet测试连接。
Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions:
连接redis报错,根据错误信息,redis运行在受保护模式,需要修改redis配置 protected-mode
1.修改redis.conf文件,protected-mode no,修改完重启redis服务。如图所示:
2.redis命令行下作设置,查看设置:config get protected-mode
若出现以上情况,需要验证redis密码,输入 auth password(123456)
此时再进行设置:config set protected-mode no
根据实际情况选择对应方式修改;修改成功后重新连接redis服务,或者telnet命令测试redis端口。