Open Dbz opened 6 months ago
I fixed this by setting the image for elastic-search to be image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2-arm64
in the docker-compose file, and then I needed to solve another startup issue with adding the following to the elastic search environment:
- node.name=node-1
- cluster.initial_master_nodes=node-1
I'm happy to close this issue. Do you want me to update any documentation and create a PR to give back to the community?
I fixed this by setting the image for elastic-search to be
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2-arm64
in the docker-compose file, and then I needed to solve another startup issue with adding the following to the elastic search environment:- node.name=node-1 - cluster.initial_master_nodes=node-1
I'm happy to close this issue. Do you want me to update any documentation and create a PR to give back to the community?
Happy to have a PR that fixes this issue!
I'm working on getting it working on my other laptop which is an M2 (vs my M1) and running into some more issues that I will work out before submitting a PR.
If you are able to run it in a M2 that will be so helpful because we don't have that processor on our computers, so we don't have a way to try everything there.
I'm working on getting it working on my other laptop which is an M2 (vs my M1) and running into some more issues that I will work out before submitting a PR.
I'm running into the same issues, but on M3. If you find a general fix, I'll happy to test it on M3.
On my M2 based MacBook I got the example (default) docker compose setup working by changing the docker-compose/docker-compose.yml
file in the following ways:
docker.elastic.co/elasticsearch/elasticsearch:7.17.21-arm64
discovery.type=single-node
The complete elasticsearch sections looks now like this:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.21-arm64
command: elasticsearch -Enetwork.bind_host=0.0.0.0 -Ehttp.max_content_length=2000mb
ports:
- 9200:9200
environment:
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms2g -Xmx2g
- ANONYMOUS_USER=true
Further testing would be needed to check if "everything" is really working is expected 🤞🏻
When I try the
docker-compose up -d
setup, I run into an issue where localhost says "Kibana server is not ready yet"Machine is an
Apple M1
If I run the command
docker logs docker-compose-elasticsearch-1
I see an error like this:Is there a suggestion on what the best course of action is here?
Thank you so much for your help and for creating this software. I am looking forward to using it!