Elasticsearch 7.3.1 - Help on three nodes cluster - Master not discovered yet

Hi Stephen,

You were right. Now I can ping and telnet Both ports, 9300 and 9200, from OPEL to MORRIS. Inbound rules were missing on the MORRIS firewall.

MORRIS has started:

[2021-02-19T11:41:11,134][INFO ][o.e.h.AbstractHttpServerTransport] [MORRIS] publish_address {10.146.114.89:9200}, bound_addresses {10.146.114.89:9200}
[2021-02-19T11:41:11,134][INFO ][o.e.n.Node               ] [MORRIS] started

For some reason, MORRIS was still unable to join the cluster. I remembered that I had experienced:
POST /_cluster/voting_config_exclusions?node_names=MORRIS

I ran:
DELETE /_cluster/voting_config_exclusions

And everything was fine:
GET http://morris:9200/

{
  "name" : "MORRIS",
  "cluster_name" : "AA-PT-Monitoring",
  "cluster_uuid" : "_UaiOyWxRSm3xgBYy62Vsw",
  "version" : {
    "number" : "7.3.1",
    "build_flavor" : "default",
    "build_type" : "zip",
    "build_hash" : "4749ba6",
    "build_date" : "2019-08-19T20:19:25.651794Z",
    "build_snapshot" : false,
    "lucene_version" : "8.1.0",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}

GET http://morris:9200/_cluster/health?pretty

{
  "cluster_name" : "AA-PT-Monitoring",
  "status" : "green",
  "timed_out" : false,
  "number_of_nodes" : 3,
  "number_of_data_nodes" : 3,
  "active_primary_shards" : 21,
  "active_shards" : 42,
  "relocating_shards" : 0,
  "initializing_shards" : 0,
  "unassigned_shards" : 0,
  "delayed_unassigned_shards" : 0,
  "number_of_pending_tasks" : 0,
  "number_of_in_flight_fetch" : 0,
  "task_max_waiting_in_queue_millis" : 0,
  "active_shards_percent_as_number" : 100.0
}

Thank you so much Stephen :slight_smile: