# Protected mode is a layer of security protection, in order to avoid that # Redis instances left open on the internet are accessed and exploited. # 保护模式是一层安全保护,以避免在互联网上打开的Redis实例会被访问和利用。 # # When protected mode is on and if: # 当保护模式打开时,如果: # # 1) The server is not binding explicitly to a set of addresses using the # "bind" directive. # 服务器未使用“bind”指令显式绑定到一组地址。 # 2) No password is configured. # 未配置密码。 # # The server only accepts connections from clients connecting from the # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain # sockets. # 服务器只接受来自从IPv4 和 IPv6 环回地址 127.0.0.1 和::1,以及来自 Unix 域sockets客户端的连接。
# Require clients to issue AUTH <PASSWORD> before processing any other # commands. This might be useful in environments in which you do not trust # others with access to the host running redis-server. # 要求客户端在处理任何其他指令之前发出AUTH <PASSWORD>命令。这在您不信任他人访问运行redis服务器的主机的环境中可能很有用。 # This should stay commented out for backward compatibility and because most # people do not need auth (e.g. they run their own servers). # 出于向后兼容性的考虑,并且大多数人不需要身份验证(例如,他们运行自己的服务器),这里应该保持注释掉。 # # Warning: since Redis is pretty fast an outside user can try up to # 150k passwords per second against a good box. This means that you should # use a very strong password otherwise it will be very easy to break. # 警告:由于 Redis 速度非常快,外部用户可以尝试以每秒 150k 密码破解。这意味着您应该使用非常强的密码,否则很容易被破解。 # requirepass 123456