ELK Multi node Cluster using docker compose

iam trying to setup ELK Multi node Cluster using docker compose
Server details
Master: 10.100.10.01
Node-1: 10.100.10.02
node-2: 10.100.10.03

Can you pls help me

Hi Everyone

Can you please help me

Hi @sarathrock You will need to provide a lot more information than that...

Have you looked at the documentation?

Please follow, and when you have a specific question, please let us know ...

You will need to share your configurations and then share the logs etc...

Hi @stephenb

this is my configuration

version: '3.8'
services:
  elasticsearch:
    container_name: elasticsearch-master
    image: docker.elastic.co/elasticsearch/elasticsearch:8.5.0
    restart: unless-stopped
    environment:
      - node.name=master-node
      - cluster.name=elk-cluster
      - discovery.seed_hosts=10.16.55.102,10.16.59.102
      - cluster.initial_master_nodes=master-node,worker-node
      - network.host=0.0.0.0
      - bootstrap.memory_lock=true
      - "ES_JAVA_OPTS=-Xms2g -Xmx2g"
      - xpack.security.enabled=false
      - ELASTICSEARCH_USERNAME=elastic
      - ELASTIC_PASSWORD=IcXelk_2022
      - KIBANA_SYSTEM_USERNAME=kibana_system
      - KIBANA_SYSTEM_PASSWORD=IcXKib@na_2022
      - LOGSTASH_SYSTEM_USERNAME=logstash_system
      - LOGSTASH_SYSTEM_PASSWORD=IcXLogst@sh_2022
      - BEATS_SYSTEM_USERNAME=beats_system
      - BEATS_SYSTEM_PASSWORD=IcXBeats_2022
      - "ES_LOGGING_LEVEL=DEBUG" # Add this line
      - "ES_LOGGING_ORG_ELASTICSEARCH_DISCOVERY=DEBUG" # Add this line
      - "ES_LOGGING_ORG_ELASTICSEARCH_CLUSTER=DEBUG"
    ulimits:
      memlock:
        soft: -1
        hard: -1
    volumes:
      - esdata1:/usr/share/elasticsearch/data:rw
    ports:
      - 9200:9200
      - 9300:9300
    network_mode: bridge
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "50"

volumes:
  esdata1:
    driver: local

this was not creating cluster, and it is asking ssl Certs,

I have generated open SSL certs but still getting same.

Can you please tell me is it possible to use without SSL.

Hi Everyone

Please help me.