03 node ELK cluster setup with v 7.1.x

Hi Team,

When I create 3 node cluster what would be the elaticsearch.yml and Kibana.yml configuration look like?

My current configuration

Node Host IP
Node 1 app1 192.168.60.4
Node 2 app2 192.168.60.5
Node 3 DB 192.168.60.6

[root@orc-app1 ~]# cat /etc/elasticsearch/elasticsearch.yml
cluster.name: ElasticDemO
node.name: {HOSTNAME} network.host: 192.168.60.4 discovery.zen.minimum_master_nodes: 1 xpack.security.enabled: false bootstrap.system_call_filter: true path.data: /var/lib/elasticsearch path.logs: /var/log/elasticsearch discovery.seed_hosts: 192.168.60.4:9300 cluster.initial_master_nodes: ["{HOSTNAME}"]
http.cors.enabled: true

[root@orc-app1 ~]# cat /etc/kibana/kibana.yml
server.port: 5601
server.host: "192.168.60.4"
server.name: "orc-app1.dev"
elasticsearch.hosts: ["http://192.168.60.4:9200"]
kibana.index: ".kibana"

like above I have configured elasticsearch.yml and Kibana.yml accordingly

Thank you,

Nuwan

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