Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-02-21 06:53:07 +0300
committerEvan Read <eread@gitlab.com>2019-02-21 06:53:07 +0300
commit71e0dcba31be19f99618ebddf41130a4d930d5e3 (patch)
tree60c6280cf4a53a74eaf80e9b89cd437f0edb7aab /doc/administration/high_availability
parent455ae72682ba47c4a679a4b30b01e565ffb08204 (diff)
Add note on configuring an external Redis Sentinel instance
Adding password in the Redis Sentinel config does not actually work because v3.2.x doesn't respond to the `AUTH` command. This came up in https://gitlab.com/gitlab-org/omnibus-gitlab/issues/4126.
Diffstat (limited to 'doc/administration/high_availability')
-rw-r--r--doc/administration/high_availability/redis.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/administration/high_availability/redis.md b/doc/administration/high_availability/redis.md
index bf5d064d79d..55d85ad86e6 100644
--- a/doc/administration/high_availability/redis.md
+++ b/doc/administration/high_availability/redis.md
@@ -359,6 +359,12 @@ following section assumes you are using Omnibus GitLab Enterprise Edition.
For the Omnibus Community Edition and installations from source, follow the
[Redis HA source install](redis_source.md) guide.
+NOTE: **Note:** If you are using an external Redis Sentinel instance, be sure
+to exclude the `requirepass` parameter from the Sentinel
+configuration. This parameter will cause clients to report `NOAUTH
+Authentication required.`. [Redis Sentinel 3.2.x does not support
+password authentication](https://github.com/antirez/redis/issues/3279).
+
Now that the Redis servers are all set up, let's configure the Sentinel
servers.