• 【redis】redis异常-MISCONF Redis is configured to save RDB snapshots


    使用redis报错:

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

    nested exception is redis.clients.jedis.exceptions.JedisDataException:

    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.

    解决方法:

      在redis-cli连接到服务器后执行以下命令:

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

      就可以了。

  • 相关阅读:
    设计模式-观察者模式
    ps一寸照的编辑
    ps剪切蒙版的使用
    ps扣头发
    mysql索引优化
    ES6 $ ES5
    sping-mybatis集成
    多线程--volatile
    eclipse.exe打开是报错
    Spring Aop 详解二
  • 原文地址:https://www.cnblogs.com/sxdcgaq8080/p/11840248.html
Copyright © 2020-2023  润新知