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