From 42d43729424b87040a724df027f8bd8d9cb41b1f Mon Sep 17 00:00:00 2001 From: Abdelsalem <46495975+AbdelHedhili@users.noreply.github.com> Date: Wed, 6 Sep 2023 16:52:40 +0200 Subject: [PATCH] elasticsearch 7.17.0 (#332) * elasticsearch 7.17.0 * use 7.17.12 and add useful parameters xmx xms necessary since 7.11 otherwise elasticsearch decides to use Xms 16g and destroys the pc geoip 7.14 otherwise elasticsearch connects to the internet, we don't want that xpack.security.enabled=false is the default value for ES7, but needed for ES8 because they changed the default to true --------- Signed-off-by: Abdelsalem Co-authored-by: HARPER Jon --- docker-compose/technical/docker-compose.technical.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docker-compose/technical/docker-compose.technical.yml b/docker-compose/technical/docker-compose.technical.yml index dcfbf2d4..2936cdfe 100644 --- a/docker-compose/technical/docker-compose.technical.yml +++ b/docker-compose/technical/docker-compose.technical.yml @@ -48,20 +48,23 @@ services: unless-stopped elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3 + image: docker.elastic.co/elasticsearch/elasticsearch:7.17.12 ports: - 9200:9200 - 9300:9300 environment: - discovery.type=single-node - LOGSPOUT=ignore + - xpack.security.enabled=false + - ingest.geoip.downloader.enabled=false + - ES_JAVA_OPTS=-Xms1g -Xmx1g volumes: - $GRIDSUITE_DATABASES/elasticsearch:/usr/share/elasticsearch/data restart: unless-stopped kibana: - image: docker.elastic.co/kibana/kibana:7.9.3 + image: docker.elastic.co/kibana/kibana:7.17.12 ports: - 5601:5601 environment: @@ -72,7 +75,7 @@ services: unless-stopped logstash: - image: docker.elastic.co/logstash/logstash:7.9.3 + image: docker.elastic.co/logstash/logstash:7.17.12 volumes: - $PWD/../technical/pipelines.yml:/config/pipelines.yml:Z - $PWD/../technical/logstash.conf:/usr/share/logstash/pipeline/logstash.conf:Z