NC 17.0.1 Volltext suche via elasticsearch wird nicht ausgeführt

Hallo erstmal :slight_smile:

ich habe vor längerer Zeit eine Nextcloud auf einem eigenen Debian Server installiert - das klappt auch alles super.
Jetzt kam aber dann noch die anforderung mit Volltext suche über die Dokumente, also die Volltextsuche mit dem folgenden Howto durchkonfiguriert:

elasticsearch läuft:
curl -X GET 10.0.1.3:9200
{
“name” : “transfer”,
“cluster_name” : “nextcloud1”,
“cluster_uuid” : “VCTka1KLRXe7H_uvb8oX-w”,
“version” : {
“number” : “6.8.5”,
“build_flavor” : “default”,
“build_type” : “deb”,
“build_hash” : “78990e9”,
“build_date” : “2019-11-13T20:04:24.100411Z”,
“build_snapshot” : false,
“lucene_version” : “7.7.2”,
“minimum_wire_compatibility_version” : “5.6.0”,
“minimum_index_compatibility_version” : “5.0.0”
},
“tagline” : “You Know, for Search”
}

Eine Suche auf die Dokumente funktioniert auch:
curl -XGET ‘10.0.1.3:9200/nextcloud/_search?q=nextcloud&pretty’

“_index” : “nextcloud”,
“_type” : “standard”,
“_id” : “files:479”,
“_score” : 0.875909,
“_source” : {
“share_names” : {
“A0DB7C78-F831-4209-88AE-9594F4062AB8” : “Photos/Nextcloud Community.jpg”
},

Wenn ich aber über die Webseite (oder App) eine Suche Starten möchte, bleibt das suchfenster einfach stehen und ich bekomme keine Ergebnisse - es passiert effektiv nichts.

Daher, ich kann die suchkriterien eingeben - es passiert aber sonst nichts.

Welche Logs etc soll ich noch bringen?

Umgebung:
8 vCPU Intel Xeon (HyperV)
8 Gb Ram
SDD 110Gb 5% in Verwendung

root@transfer:/home/martin# uname -a
Linux transfer 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux
root@transfer:/home/martin# dpkg -l | grep php
ii libapache2-mod-php7.3 7.3.11-1~deb10u1 amd64 server-side, HTML-embedded scripting language (Apache 2 module)
ii php-apcu 5.1.17+4.0.11-1 amd64 APC User Cache for PHP
ii php-apcu-bc 1.0.4-4 amd64 APCu Backwards Compatibility Module
ii php-common 2:69 all Common files for PHP packages
ii php-dompdf 0.6.2+dfsg-3 all HTML to PDF converter
ii php-font-lib 0.3.1+dfsg-3 all read, parse, export and make subsets of different fonts
ii php-igbinary 3.0.0-1 amd64 igbinary PHP serializer
ii php-imagick 3.4.3-4.1 amd64 Provides a wrapper to the ImageMagick library
rc php-memcached 3.1.3+2.2.0-1 amd64 memcached extension module for PHP, uses libmemcached
rc php-msgpack 2.0.3-1 amd64 PHP extension for interfacing with MessagePack
ii php-pear 1:1.10.6+submodules+notgz-1.1 all PEAR Base System
ii php-redis 4.2.0-1 amd64 PHP extension for interfacing with Redis
ii php-smbclient 0.9.0-3+b1 amd64 PHP wrapper for libsmbclient
ii php7.3-bz2 7.3.11-1~deb10u1 amd64 bzip2 module for PHP
ii php7.3-cgi 7.3.11-1~deb10u1 amd64 server-side, HTML-embedded scripting language (CGI binary)
ii php7.3-cli 7.3.11-1~deb10u1 amd64 command-line interpreter for the PHP scripting language
ii php7.3-common 7.3.11-1~deb10u1 amd64 documentation, examples and common module for PHP
ii php7.3-curl 7.3.11-1~deb10u1 amd64 CURL module for PHP
ii php7.3-dev 7.3.11-1~deb10u1 amd64 Files for PHP7.3 module development
ii php7.3-fpm 7.3.11-1~deb10u1 amd64 server-side, HTML-embedded scripting language (FPM-CGI binary)
ii php7.3-gd 7.3.11-1~deb10u1 amd64 GD module for PHP
rc php7.3-imap 7.3.11-1~deb10u1 amd64 IMAP module for PHP
ii php7.3-intl 7.3.11-1~deb10u1 amd64 Internationalisation module for PHP
ii php7.3-json 7.3.11-1~deb10u1 amd64 JSON module for PHP
ii php7.3-ldap 7.3.11-1~deb10u1 amd64 LDAP module for PHP
ii php7.3-mbstring 7.3.11-1~deb10u1 amd64 MBSTRING module for PHP
ii php7.3-mysql 7.3.11-1~deb10u1 amd64 MySQL module for PHP
ii php7.3-opcache 7.3.11-1~deb10u1 amd64 Zend OpCache module for PHP
rc php7.3-pgsql 7.3.11-1~deb10u1 amd64 PostgreSQL module for PHP
ii php7.3-readline 7.3.11-1~deb10u1 amd64 readline module for PHP
rc php7.3-sqlite3 7.3.11-1~deb10u1 amd64 SQLite3 module for PHP
ii php7.3-xml 7.3.11-1~deb10u1 amd64 DOM, SimpleXML, WDDX, XML, and XSL module for PHP
ii php7.3-zip 7.3.11-1~deb10u1 amd64 Zip module for PHP
ii pkg-php-tools 1.37 all various packaging tools and scripts for PHP packages

vielen herzlichen Dank!!

Martin Lang