HI,
I configured a new Nextcloud environment but I’m having problems configuring with Redis. Once installed on my VPS machine Ubuntu 22 Redis and APCu with their respective php modules I encounter problems with creating and deleting files. My current setup is as follows
File config.php
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘distributed’ => ‘\OC\Memcache\Redis’,
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
‘filelocking.enabled’ => ‘true’,
‘redis’ =>
array (
‘host’ => ‘/var/run/redis/redis-server.sock’,
‘port’ => 0,
‘timeout’ => 0.0,
),
File redis.conf
port 0
unixsocket /var/run/redis/redis.sock
unixsocketperm 770
These are the errors that are tracked in the log file
these are the errors if I try to scan the files
if I deactivate all Redis and APCu configuration then everything seems to work fine

