• Redis系列【docker带密码进入redis】


    1.docker启动redis

    docker run -d --name myredis -p 6379:6379 redis --requirepass "123456"

    2.docker登录redis容器

    docker exec -it myredis redis-cli
    #认证密码
    auth 123456

     3.常见问题

    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

    上面的问题,是由于强制关闭redis导致的。

    解决方案;

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

  • 相关阅读:
    暗时间:学习的精神和方法
    林布蘭
    魯本斯
    維梅爾
    哈爾斯.法蘭斯
    SAFEARRAY使用方法示例
    范戴克
    100个经典错别字
    在CPP中调用Jscript中的函数
    生活在真空中的程序员
  • 原文地址:https://www.cnblogs.com/hujunwei/p/16226528.html
Copyright © 2020-2023  润新知