-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Team:SecurityPlatform Security: Auth, Users, Roles, Spaces, Audit Logging, etc t//Platform Security: Auth, Users, Roles, Spaces, Audit Logging, etc t//docs
Description
- I came from https://discuss.elastic.co/t/why-is-the-non-existent-xpack-security-enabled-mentioned-in-kibanas-configuration-documentation/366131?u=linghengqian , in order to avoid the original discussion being closed due to no reply for 28 days, I opened the current github issue.
- See https://www.elastic.co/guide/en/elasticsearch/reference/current/run-elasticsearch-locally.html#local-dev-run-kib .
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,
xpack.security.enabled
is not declared in https://www.elastic.co/guide/en/kibana/current/settings.html . - According to https://www.elastic.co/guide/en/kibana/current/release-notes-8.0.0-beta1.html#platform-breaking-changes-8.0.0-beta1 and Remove deprecated xpack.security.enabled config optionย #111681 , the
xpack.security.enabled
property has been removed. - So what does setting
xpack.security.enabled
to false do in the Kibana container?
SiddharthMantri
Metadata
Metadata
Assignees
Labels
Team:SecurityPlatform Security: Auth, Users, Roles, Spaces, Audit Logging, etc t//Platform Security: Auth, Users, Roles, Spaces, Audit Logging, etc t//docs