From d62f43528f86aa6988e8bd6b71903ff7c17b2bca Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Tue, 1 Oct 2024 14:46:50 -0500 Subject: [PATCH] [docs] Remove xpack.security.enabled Kibana reference This setting was removed from Kibana in 8.0. It's inferred based on Elasticsearch's configuration. This issue was found in https://discuss.elastic.co/t/why-is-the-non-existent-xpack-security-enabled-mentioned-in-kibanas-configuration-documentation/366131 The Kibana setting was removed in https://github.com/elastic/kibana/pull/111681 --- docs/reference/run-elasticsearch-locally.asciidoc | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/reference/run-elasticsearch-locally.asciidoc b/docs/reference/run-elasticsearch-locally.asciidoc index 64bcd3d066529..8e5a82732950d 100644 --- a/docs/reference/run-elasticsearch-locally.asciidoc +++ b/docs/reference/run-elasticsearch-locally.asciidoc @@ -98,7 +98,6 @@ docker run -p 127.0.0.1:5601:5601 -d --name kibana --network elastic-net \ -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" \ {kib-docker-image} ----