df -h
to ensure there is enough space for Redis to save data./var/log/redis/redis-server.log
.redis-cli
and then run INFO replication
to check Redis replication status.CONFIG GET save
using redis-cli
to see the current save configuration.stop-writes-on-bgsave-error
is set to yes
, use redis-cli
to execute CONFIG SET stop-writes-on-bgsave-error no
to temporarily allow writes.(Perfect for DevOps & SREs)
(Perfect for DevOps & SREs)