Kibana to Production using Elasticsearch client node

Hi Team,

I'm going through the below link.

https://www.elastic.co/guide/en/kibana/current/production.html

I'm not getting the below section, what values should be put if I have 3 master nodes and 3 data nodes.

network.host: localhost
http.port: 9200

by default transport.host refers to network.host

transport.host:
transport.tcp.port: 9300 - 9400

Thanks..
Prashant

If you're setting up a coordinating node, it shouldn't matter how many master or data nodes you have. The purpose of the coordinating node is to live on the same machine as the Kibana server to distribute the requests to the cluster. The setup of the coordinating node should be the same as the rest of the nodes on the network expect that it shouldn't be a master, data or ingest node. This is accomplished by disabling those in the config:

node.master: false
node.data: false
node.ingest: false

As long as the cluster.name matches the rest of your cluster, it's on the same network and can reach the rest of the nodes in the cluster it should automatically join the existing cluster.

Thanks Tyler for the quick reply.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.