- Why is the non-existent
elasticsearch.url
mentioned in Kibana’s configuration documentation? - See Run Elasticsearch locally in Docker (without security) | Elasticsearch Guide [8.15] | Elastic .
Start the Kibana container with the following command:
docker run -p 127.0.0.1:5601:5601 -d --name kibana --network elastic-net \
-e ELASTICSEARCH_URL=http://elasticsearch:9200 \
-e ELASTICSEARCH_HOSTS=http://elasticsearch:9200 \
-e ELASTICSEARCH_USERNAME=kibana_system \
-e ELASTICSEARCH_PASSWORD=$KIBANA_PASSWORD \
-e "xpack.security.enabled=false" \
-e "xpack.license.self_generated.type=trial" \
docker.elastic.co/kibana/kibana:8.15.0
- But the problem is,
elasticsearch.url
is not declared in Configure Kibana | Kibana Guide [8.15] | Elastic . Does this make any sense?