ES 7.4 3nodes cluster to setup

Hi,I try to 3 nodes cluster for ES7.4.
but only one node found in cluster and not specific error after restart ES.

Configurations and node list data are below,

node1
cluster.name: my_cluster
node.name: {HOSTNAME} node.master: true node.data: true network.host: 192.168.9.40 discovery.seed_hosts: ["192.168.9.40","192.168.9.41", "192.168.9.42"] cluster.initial_master_nodes: ["192.168.9.40","192.168.9.41", "192.168.9.42"] xpack.security.enabled: false node2 cluster.name: my_cluster node.name: {HOSTNAME}
node.master: true
node.data: true
network.host: 192.168.9.41
discovery.seed_hosts: ["192.168.9.40","192.168.9.41", "192.168.9.42"]
cluster.initial_master_nodes: ["192.168.9.40","192.168.9.41", "192.168.9.42"]
xpack.security.enabled: false

node3
cluster.name: my_cluster
node.name: ${HOSTNAME}
node.master: true
node.data: true
network.host: 192.168.9.42
discovery.seed_hosts: ["192.168.9.40","192.168.9.41", "192.168.9.42"]
cluster.initial_master_nodes: ["192.168.9.40","192.168.9.41", "192.168.9.42"]
xpack.security.enabled: false

curl '192.168.9.42:9200/_cat/nodes?v'
ip heap.percent ram.percent cpu load_1m load_5m load_15m node.role master name
192.168.9.42 22 32 0 0.00 0.01 0.05 dilm * server3

same topic I found and clear that.

thanks.

1 Like

Hi @oqto

  1. What happens when you try to connect the ports 9200 (HTTP) and 9300 (Transport) from the nodes? You should get an answer from every node on 9200 and the connection should not be possible when connecting to 9300.
  2. Are the necessary firewall ports open?
  3. Could you please share the logs from Elasticsearch?

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