diff options
author | Daniel Widerin <daniel@widerin.net> | 2014-09-25 11:09:46 +0000 |
---|---|---|
committer | Daniel Widerin <daniel@widerin.net> | 2014-09-25 11:09:46 +0000 |
commit | 18adc4f67ddee72141ec9be5ebbe3923ec4f41e4 (patch) | |
tree | 5650946eef4795e9f096acad0bdec70e0bd0f756 /doc/update/7.2-to-7.3.md | |
parent | d3dbd353ccebb753e7791643312795ae27bb4c9d (diff) | |
download | gitlab-ce-18adc4f67ddee72141ec9be5ebbe3923ec4f41e4.tar.gz |
Fix 'Invalid socket file permissions' error
Diffstat (limited to 'doc/update/7.2-to-7.3.md')
-rw-r--r-- | doc/update/7.2-to-7.3.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/update/7.2-to-7.3.md b/doc/update/7.2-to-7.3.md index 942f9e9641f..5707d1930b6 100644 --- a/doc/update/7.2-to-7.3.md +++ b/doc/update/7.2-to-7.3.md @@ -73,7 +73,7 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab # 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. - echo 'unixsocketperm 775' | sudo tee -a /etc/redis/redis.conf + echo 'unixsocketperm 0775' | sudo tee -a /etc/redis/redis.conf # Activate the changes to redis.conf sudo service redis-server restart # Add git to the redis group |