skip to Main Content

Azure – Encountering a “No route to host” error when trying to access my Elasticsearch cluster?

I have a elastic search cluster installed in my Azure Virtual machine (linux) with private ip 10.176.83.156 and the elasticsearch.yml file have following values cluster.name: Test-cluster node.name: node-1 path.data: /var/lib/elasticsearch path.logs: /var/log/elasticsearch network.host: 0.0.0.0 http.port: 9200 xpack.security.enabled: true xpack.security.enrollment.enabled: true…

VIEW QUESTION

Kibana in Docker forgets the enrolment token after restart

I'm trying to run a single node setup of Elastic and Kibana locally in Docker Compose. I've got a working docker-compose.yaml: version: "3.9" networks: elastic: name: elastic volumes: elastic: services: elastic: image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3 mem_limit: 1GB networks: - elastic ports: -…

VIEW QUESTION
Back To Top
Search