Skip to content
Snippets Groups Projects
Commit 4c74936f authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Merge branch 'patch-26' into 'master'

ensure UIDs and GIDs match for HA setup

Closes omnibus-gitlab#2138

See merge request gitlab-org/gitlab-ce!19054
parents 4af756e5 6b109357
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -47,7 +47,8 @@ for each GitLab application server in your environment.
URL. Depending your the NFS configuration, you may need to change some GitLab
data locations. See [NFS documentation](nfs.md) for `/etc/gitlab/gitlab.rb`
configuration values for various scenarios. The example below assumes you've
added NFS mounts in the default data locations.
added NFS mounts in the default data locations. Additionally the UID and GIDs
given are just examples and you should configure with your preferred values.
 
```ruby
external_url 'https://gitlab.example.com'
Loading
Loading
@@ -68,6 +69,14 @@ for each GitLab application server in your environment.
gitlab_rails['redis_port'] = '6379'
gitlab_rails['redis_host'] = '10.1.0.6' # IP/hostname of Redis server
gitlab_rails['redis_password'] = 'Redis Password'
# Ensure UIDs and GIDs match between servers for permissions via NFS
user['uid'] = 9000
user['gid'] = 9000
web_server['uid'] = 9001
web_server['gid'] = 9001
registry['uid'] = 9002
registry['gid'] = 9002
```
 
> **Note:** To maintain uniformity of links across HA clusters, the `external_url`
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment