Hi,
I'm trying to run Kibana for the first time. I'm using Docker. Here is my configuration:
version: '3.7'
services:
elasticsearch:
image: elasticsearch:5.6.4
ports:
- 9200:9200
environment:
- discovery.type=single-node
kibana:
image: docker.elastic.co/kibana/kibana:5.6.4
ports:
- 81:5601
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
- XPACK_GRAPH_ENABLED=false
- XPACK_MONITORING_ENABLED=false
- XPACK_REPORTING_ENABLED=false
- XPACK_SECURITY_ENABLED=false
What is the expected behavior:
I run it and it works.
What happens instead:
It always shows the Red status and none of Kibana function works:
At the same time, Elasticsearch works fine and I can run any query programmatically.
I can't see any workarounds in the documentation regarding this. I even didn't see any instructions to turn off the xpack. While I turned it off by environment variables, it still tries to run something related to xpack:
What else should be done to make it working? Why it's so unintuitive? Why documentation doesn't cover such simple cases?