【踩坑】Redis启动时报错

前言

Redis启动时报错:DENIED Redis is running in protected mode because protected mode is enabled and no password is set for the default user. 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: 1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. 3) If you started the server manually just for testing, restart it with the '--protected-mode no' option. 4) Set up an authentication password for the default user. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

原因

  • 配置了允许局域网访问,但是没有设置密码,所以自动开启了保护模式

解决问题

方法一

  • 修改配置文件第87行,禁止远程访问
/etc/redis.conf
1
bind 127.0.0.1 ::1

方法二

  • 在配置文件第1036行,设置密码

<password>:密码

/etc/redis.conf
1
requirepass <password>

方法三

  • 在配置文件第111行,禁用保护模式
/etc/redis.conf
1
protected-mode no

方法四

  • 启动服务时临时禁用保护模式
1
redis-server --protected-mode no

完成