Created
January 24, 2013 09:30
-
-
Save kapkaev/4619127 to your computer and use it in GitHub Desktop.
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. Resque
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ redis-cli | |
> config set stop-writes-on-bgsave-error no |
thank you from 2022
Thank you!
CONFIG SET dbfilename temp.rdb
This is the way,
What u should be doing is :
# redis-cli 127.0.0.1:6379> CONFIG SET dir /data/tmp OK 127.0.0.1:6379> CONFIG SET dbfilename temp.rdb OK 127.0.0.1:6379> BGSAVE Background saving started 127.0.0.1:6379>
Please Make sure
/data/tmp
has enough disk space.this is the way. Thank you for solving the root problem :)
i keep getting "ERR Changing directory: No such file or directory" im not that good with ubuntu and ideas why?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in addition, I want to say that such errors can appear if the radis server is accessible from outside. You need to configure the radis server to listen only localhost. To do this, in the /etc/redis/redis.conf file, change bind parameter to 127.0.0.1
nano /etc/redis/redis.conf
bing 127.0.0.1
After this:
netstat -lnp | grep redis
should show that redis listning 127.0.0.1 insteed 0.0.0.0:*