解决办法:注释掉bind 127.0.0.1可以使所有的ip访问redis
若是想指定多个ip访问,但并不是全部的ip访问,可以bind
在Redis3.2之后,redis增加了protected-mode,在这个模式下,即使注释掉了bind 127.0.0.1,再访问redisd时候还是报错
修改办法:
protected-mode no
绑定IP:
sed -i 's/bind 127.0.0.1/bind 192.168.122.1/' redis.conf
sed -i 's/protected-mode yes/protected-mode no/' redis.conf