I have upgraded my owncloud from 9 to version 10.0.8. I am running Ubuntu 16.04.4
So far it’s working fine
I have enabled also the use of memcache.local
I am getting a warning saying Transactional file locking should be configured to use memory-based locking
I’ve installed redis by following instruction here. I tested, it’s working fine.
I’ve activated the use of Transactional File Locking by following this guide.
However, despite doing it, I am still getting a warning saying Transactional file locking should be configured to use memory-based locking
Here’s my memcache setting in config.php
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘filelocking.enabled’ => true,
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
‘redis’ => [
‘host’ => ‘localhost’,
‘port’ => 6379,
‘timeout’ => 0.0,
‘password’ => ‘’, // Optional, if not defined no password will be used.
],
Security & setup warnings
Transactional file locking should be configured to use memory-based locking, not the default slow database-based locking. See the documentation ↗ for more information.