From 77cc418d95764220078aa262fcb7e2ae4cb0238c Mon Sep 17 00:00:00 2001 From: Jos Poortvliet Date: Thu, 18 Jul 2019 20:46:06 +0200 Subject: [PATCH] note on the redis socket file permissions This can take forever to debug ;-) --- .../configuration_server/caching_configuration.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/admin_manual/configuration_server/caching_configuration.rst b/admin_manual/configuration_server/caching_configuration.rst index 98b7d3c58..ba177951a 100644 --- a/admin_manual/configuration_server/caching_configuration.rst +++ b/admin_manual/configuration_server/caching_configuration.rst @@ -116,6 +116,13 @@ recommended if Redis is running on the same system as Nextcloud) use this exampl Only "host" and "port" variables are required, the other ones are optional. +Be sure to set the right permissions on redis.sock so that your webserver can +read and write to it. This might require settingt them to `777` in the Redis +configuration file, typically ``/etc/redis/default.config```:: + + unixsocket /var/run/redis/redis.sock + unixsocketperm 777 + Redis is very configurable; consult `the Redis documentation `_ to learn more.