diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-25 18:57:59 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-25 18:57:59 +0300 |
commit | 143b936300ab8f3f63945fe5b38b6e7c6c2564bb (patch) | |
tree | 74faa97b03cacb8f28b37836fd57971691634a2e | |
parent | d6f04ad831d9ed2cd2b8b150df16332df0832a77 (diff) | |
parent | 8f0551de05e84b95c06f14db9271f8f5edb80c6c (diff) | |
download | gitlab-ce-143b936300ab8f3f63945fe5b38b6e7c6c2564bb.tar.gz |
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
-rw-r--r-- | doc/update/7.2-to-7.3.md | 2 |
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 |