From bc33254bd75ba75022cc7e03dacea872787b51a3 Mon Sep 17 00:00:00 2001 From: osgn422w Date: Tue, 4 Feb 2020 00:43:45 +0100 Subject: correct https settings correction of some https settings preventing ES and kibana startup Issue-ID: CLAMP-483 Change-Id: Ib2df35dca262b59121a60d2c8571a9ee396951fa Signed-off-by: osgn422w --- src/main/docker/elasticsearch/config/elasticsearch.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/main/docker/elasticsearch/config') diff --git a/src/main/docker/elasticsearch/config/elasticsearch.yml b/src/main/docker/elasticsearch/config/elasticsearch.yml index 9380de5..55c2de4 100644 --- a/src/main/docker/elasticsearch/config/elasticsearch.yml +++ b/src/main/docker/elasticsearch/config/elasticsearch.yml @@ -4,16 +4,17 @@ # cluster.name: "docker-cluster" network.host: 0.0.0.0 +node.name: "cldash-es-node1" # # minimum_master_nodes need to be explicitly set when bound on a public IP # # set to 1 to allow single node clusters # # Details: https://github.com/elastic/elasticsearch/pull/17288 -# discovery.zen.minimum_master_nodes: 1 - +discovery.zen.minimum_master_nodes: 1 +discovery.seed_hosts: "cldash-es-node1" # # Breaking change in 7.0 # # https://www.elastic.co/guide/en/elasticsearch/reference/7.0/breaking-changes-7.0.html#breaking_70_discovery_changes -# cluster.initial_master_nodes: -# - elasticsearch1 +cluster.initial_master_nodes: + - cldash-es-node1 # - docker-test-node-1 ######## Start OpenDistro for Elasticsearch Security Demo Configuration ######## # WARNING: revise all the lines below before you go into production -- cgit 1.2.3-korg