当前位置: 首页 > 知识库问答 >
问题:

Redis配置为保存RDB快照,但目前无法在磁盘上持久化-Ubuntu Server

钮刚洁
2023-03-14

我使用的是redis alpine的容器,在生产过程中——在我的服务器上——出现了这个错误。我发现Miscf Redis配置为保存RDB快照,并进行了检查,但其中的建议都不起作用。

这是错误消息:

    $ node dist/queue.js

events.js:174
      throw er; // Unhandled 'error' event
      ^
ReplyError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
    at parseError (/home/deploy/gympoint/node_modules/redis-parser/lib/parser.js:193:12)
    at parseType (/home/deploy/gympoint/node_modules/redis-parser/lib/parser.js:303:14)
Emitted 'error' event at:
    at /home/deploy/gympoint/node_modules/beequeue/lib/queue.js:322:14
    at /home/deploy/gympoint/node_modules/beequeue/lib/queue.js:177:21
    at Object.callbackOrEmit [as callback_or_emit] (/home/deploy/gympoint/node_modules/redis/lib/utils.js:89:9)
    at RedisClient.return_error (/home/deploy/gympoint/node_modules/redis/index.js:706:11)
    at JavascriptRedisParser.returnError (/home/deploy/gympoint/node_modules/redis/index.js:196:18)
    at JavascriptRedisParser.execute (/home/deploy/gympoint/node_modules/redis-parser/lib/parser.js:572:12)
    at Socket.<anonymous> (/home/deploy/gympoint/node_modules/redis/index.js:274:27)
    at Socket.emit (events.js:198:13)
    at addChunk (_stream_readable.js:287:12)
    at readableAddChunk (_stream_readable.js:268:11)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

共有1个答案

秦宜修
2023-03-14

出现此错误的原因之一是当您使用Redis容器时,没有受到攻击的卷。要解决此问题,只需将以下行放入docker compose文件:

volumes:
    - "./redis-data:/data"
 类似资料: