Have you ever faced following problem on the server because of the redis?
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error
We recently faced this error on our client’s live site server. Here is the solution for the same:
You will need to login into your server using SSH and hit following commands.
$ redis-cli
> config set stop-writes-on-bgsave-error no
I hope these command solve your problem and let us know if you have other solution which worked for you.
Happy coding guys!