Alex
Alex

Reputation: 4266

MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk

I am using Redis and I have the error: 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

Server: CentOS 7 - Vultr

I see same question in here: MISCONF Redis is configured to save RDB snapshots

But, i don't fix it with suggest.

Please, help me.

Upvotes: 2

Views: 17925

Answers (2)

Onaefe
Onaefe

Reputation: 456

Just need to log into your terminal and run the below commands to restart your services.

This is a non-invasive process that avoids you changing any configuration setting.

service redis-server stop

service redis-server start

Upvotes: 3

Sabin Bogati
Sabin Bogati

Reputation: 741

I solved the problem by executing following commands:

$ redis-cli
> config set stop-writes-on-bgsave-error no

Upvotes: 6

Related Questions