Full text search plugin not working in Nextcloud
-
I posted over on the Nextcloud community also, but here is the problem.
I have these apps added to the instance.
I have these settings set.
I can access the elasticsearch instance from another computer in a browser
or with curl on the localhost.
A search for something that is in an XML file is not found. but the XML file itself is found.
-
-
the test works.
-
Not sure how NextCloud implements the search. You can test elastic search with cURL like this:
curl 192.168.1.100:9200/_search?pretty -H "Content-Type: application/json" -d '{"query":{"query_string":{"query":"Serial number"}}}'
That should return any hits that contain that text
-
That will return from the default index. To specify an index add it in the URL:
curl 192.168.1.100:9200/index/_search?pretty'