Nextcloud and redis

tailorswift

Cadet
Joined
Dec 2, 2023
Messages
2
Hello, I have nextcloud application in TrueNAS Scale from ix-systems and i want to add redis. For now I've installed Redis from "TrueNAS app store" and added this lines to config.php, but it doesn't work.
Code:
'filelocking.enabled' => true,
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
     'host' => 'localhost',
     'port' => 30036,
     'timeout' => 0.0,
     'password' => 'TOPSECRET', // Optional, if not defined no password will be used.
      ),


I have idea to install Redis in Nextcloud app, but with every reboot it delete all packages installed with apt install.
 
Joined
Jul 14, 2017
Messages
1
You are so incredibly close with this. Swap localhost to your TrueNAS Scale's IP Address. Then restart the Nextcloud App and you'll be good to go.
 
Top