Memcaching crashes NC17

Please make sure that the redis.conf file contains at least the following line:

unixsocket /var/run/redis/redis.sock

Check the ownership and file access rights of the Redis socket:

ls -al /var/run/redis/redis.sock

Change the Redis configuration as follows:

'memcache.locking' => 'OC\\Memcache\\Redis',

'redis' => array (
   'host' => '/var/run/redis/redis.sock',
   'port' => 0,                                # <<< !!!
   'timeout' => 0.0
),

“Memcached” (distributed) is normally not required for a local installation.

3 Likes