redis 禁用保护模式

错误

DENIED 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: 
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) Setup a bind address or an authentication password. 
NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

使用 连接工具 连接 redis 时,出现上面错误。分析是 redis 使用 保护模式 运行的

禁用

修改模式

修改 安装目录下的 redis.conf 配置文件

vim redis.conf 

redis 禁用保护模式_第1张图片

找到 protected-mode 修改为 no

redis 禁用保护模式_第2张图片

屏蔽 bind

将 配置文件中的 bind 注释掉

redis 禁用保护模式_第3张图片

指定配置文件启动

kill 正在运行 redis 的ID

[root@iZ0jl1aa09m86whnkbpfy1Z redis-6.0.5]# ps -ef | grep redis
root      2029     1  0 15:48 ?        00:00:00 ./redis-server *:6379
root      2260  1350  0 16:05 pts/0    00:00:00 grep --color=auto redis


[root@iZ0jl1aa09m86whnkbpfy1Z redis-6.0.5]# kill 2029

进入到 安装目录 /redis-6.0.5/src 下,使用配置文件启动

cd /redis-6.0.5/src
./redis-server ../redis.conf

你可能感兴趣的:(redis,数据库,缓存)