Yogesh D
Yogesh D

Reputation: 1666

How to configure Kibana to Elasticsearch Cluster?

If I have to point Kibana to an existing ElasticSearch Cluster which is secured with username and password. How do I do that, does it involve configuration of both Kibana and Elasticsearch? I got some information here, but still, it is not clear what would be the process. Can someone, please elaborate on steps which I need to take? Thanks

Upvotes: 0

Views: 1007

Answers (1)

Val
Val

Reputation: 217564

According to the Kibana docs you simply need to make sure that the following two properties are also set in your kibana.yml config:

elasticsearch.username: <username>
elasticsearch.password: <password>

Upvotes: 1

Related Questions