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