本文主要是介绍redis被攻击redis READONLY You can‘t write against a read only slave.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
redis 日志路径
/var/log/redis
拿下来后发现有这种错误
Operation now in progress
可能是网络断开导致,
查找redis
whereis redis
修改
vim /etc/redis.conf
大概在300行 下面代码yes改no
slave-read-only no
重启redis
sudo systemctl restart redis.service
之后就可以了
也可能是redis被攻击
修改redis.conf
中requirepass
配置项为强密码
修改redis.conf
中port 端口号
protected-mode yes 开启保护模式
若没设置添加
bind localhost
记得代码也要改application.yml文件
全部使用localhost
这篇关于redis被攻击redis READONLY You can‘t write against a read only slave.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!