Skip to content

Nextcloud - Redis Cache

Nextcloud
  • Irgendwie ging mir ja doch die Meldung auf die Nerven, das kein Cache installiert ist. Na gut, dann mal ändern.

    Hier wird das gut erklärt. https://docs.nextcloud.com/server/11/admin_manual/configuration_server/caching_configuration.html

    Installation

    Wir brauchen folgendes

    apt install redis-server
    apt install php7.3-redis
    

    Konfiguration Redis

    Passwort nicht vergessen! Nur auf localhost binden!

    Konfiguration Nextcloud

    In die config.php folgendes eintragen

    'memcache.locking' => '\OC\Memcache\Redis',
    'memcache.local' => '\OC\Memcache\Redis',
    'redis' => array(
        'host' => 'localhost',
        'port' => 6379,
        'password' => 'secret',
         ),
    

    Das wollte erst bei mir, als ich den FPM Prozeß neugestartet habe.

    service php7.3-fpm restart
    

    Danach war die nervige Meldung weg 🤓 Mal die Tage beobachten, was das so an Speicher verbrät.

  • Redis ConnectionPool

    Redis
    2
    0 Stimmen
    2 Beiträge
    86 Aufrufe
    FrankMF

    Die Antwort von ChatGPT wie der Redis ConnectionPool funktioniert. Ein paar Dinge finde ich komisch.

    Link Preview Image ChatGPT

    ChatGPT is a free-to-use AI system. Use it for engaging conversations, gain insights, automate tasks, and witness the future of AI, all in one place.

    favicon

    (chat.openai.com)

  • 0 Stimmen
    2 Beiträge
    339 Aufrufe
    FrankMF

    Noch eine Ergänzung. Wenn ihr jetzt viele User habt und das nur auf eine Gruppe beschränken wollt, könnt ihr das so machen.

    Unter Apps, Nextcloud Assistant suchen und die gewünschten Gruppen eintragen. Fertig 😉

    197deae4-d72a-4729-bba7-bfa9b4bef334-grafik.png

  • 0 Stimmen
    1 Beiträge
    118 Aufrufe
    Niemand hat geantwortet
  • Nextcloud - NGINX Example

    Nextcloud
    4
    0 Stimmen
    4 Beiträge
    138 Aufrufe
    FrankMF

    @mabs Gerne.

    84eb055e-1c29-43c4-9265-f78c9a66554f-grafik.png

    Wenn es irgendwo klemmt, können wir ja mal vergleichen. Aber dran denken, ich nutze nur NGINX. Und zu den Warnungen, nein ich lege sehr viel wert darauf, das alles einwandfrei konfiguriert ist. Kann mich noch gut an meine Anfangstage erinnern, da war ich damit wochenlang beschäftigt 🙂

  • Nextcloud 23.0.3

    Nextcloud
    1
    0 Stimmen
    1 Beiträge
    125 Aufrufe
    Niemand hat geantwortet
  • Nextcloud - Update auf 21.0.1

    Nextcloud
    1
    0 Stimmen
    1 Beiträge
    223 Aufrufe
    Niemand hat geantwortet
  • RedisInsight

    Redis
    1
    0 Stimmen
    1 Beiträge
    165 Aufrufe
    Niemand hat geantwortet
  • Nextcloud Talk

    Nextcloud
    5
    0 Stimmen
    5 Beiträge
    771 Aufrufe
    FrankMF

    All I needed to do was setting the permissions to 744 for the archive directory and the symlinks resolved correctly after a reboot of coturn

    My turnserver installation on Debian runs as the user turnserver and not as root, nor is the user turnserver in any group owning the letsencrypt directory.
    If your turnserver does run as root, it should be fine just adding execute permissions.

    I hope this helps some of you.
    Quelle: https://help.nextcloud.com/t/lets-encrypt-symlink-breaks-coturn-configuration/70166

    Was zum Testen die Tage....