redis 批量删除key,与出现的问题解决(MISCONF Redis is configured to save RDB snapshots)

来源:互联网 发布:linux驱动开发 书籍 编辑:程序博客网 时间:2024/05/23 14:56

删除key

./redis-cli -a password -n 0 keys "/test/*" | xargs ./redis-cli -a password -n 0 del

-a   auth  +  password 表示用户验证

del 表示删除


之后会出现如下错误


(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.

使用如下命令解决:

config set stop-writes-on-bgsave-error no

原创粉丝点击