Tried to install the elastic search following the guides.
Docker compose (not much to show)
elasticsearch:
image: elasticsearch:7.5.2
container_name: nextcloud_elasticsearch
restart: always
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- “ES_JAVA_OPTS=-Xms512m -Xmx512m”
- discovery.type=single-node
# Disable authentication and ssl completely
- xpack.security.enabled=false
ulimits:
memlock:
soft: -1
hard: -1
volumes:
# Use named volume because of permission problems
- /Docker/nextcloud/elasticsearch:/usr/share/elasticsearch/data
ports:
- 9200:9200
Plugins for fulltext search and elastic installed. NC latest version to date and them as well.
Going to the 192.168.1.1:9200 port i can see some JSON output like hello world. But upon going to next cloud docker container and trying to reindex the container all i get is
The client noticed that the server is not Elasticsearch and we do not support this unknown product
What am I missing?