summaryrefslogtreecommitdiff
path: root/doc/update/7.2-to-7.3.md
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-09-25 15:48:45 +0000
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-09-25 15:48:45 +0000
commit8f0551de05e84b95c06f14db9271f8f5edb80c6c (patch)
treeb8b3b65054e1ac155b3736720bf84b8b9d4e5869 /doc/update/7.2-to-7.3.md
parent5040dbfbf871533a8ae0f744856344f167e9a3d8 (diff)
parent99e5e6db73379190f2025daafe4bb5490f4bb360 (diff)
downloadgitlab-ce-8f0551de05e84b95c06f14db9271f8f5edb80c6c.tar.gz
Merge branch 'master' into 'master'
Small documentation update, add unixsocketperm If you run gitlab as user ``git`` while redis runs as user ``redis`` and you add git to ``redis`` group, you'll need to set ``unixsocketperm = 0775`` to grant write access to group. See merge request !192
Diffstat (limited to 'doc/update/7.2-to-7.3.md')
-rw-r--r--doc/update/7.2-to-7.3.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/update/7.2-to-7.3.md b/doc/update/7.2-to-7.3.md
index dcc43529956..48f515ad467 100644
--- a/doc/update/7.2-to-7.3.md
+++ b/doc/update/7.2-to-7.3.md
@@ -72,6 +72,8 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
sed 's/^port .*/port 0/' /etc/redis/redis.conf.orig | sudo tee /etc/redis/redis.conf
# Enable Redis socket for default Debian / Ubuntu path
echo 'unixsocket /var/run/redis/redis.sock' | sudo tee -a /etc/redis/redis.conf
+ # Be sure redis group can write to the socket, enable only if supported (>= redis 2.4.0).
+ sed -i '/# unixsocketperm/ s/^# unixsocketperm.*/unixsocketperm 0775/' /etc/redis/redis.conf
# Activate the changes to redis.conf
sudo service redis-server restart
# Add git to the redis group