Giter Club home page Giter Club logo

Comments (3)

pires avatar pires commented on June 18, 2024

This is a problem with AWS discovery plug-in. Can you please report upstream and link this issue?

from docker-elasticsearch-aws.

clock157 avatar clock157 commented on June 18, 2024

i have make some change of elasticsearch.yml,
add region and change tag to groups.

cloud:
  aws:
    region: ${REGION}
    access_key: ${AWS_KEY}
    secret_key: ${AWS_SECRET}

discovery:
  type: ec2
  ec2.groups: ${GROUP_NAME}
  zen:
    minimum_master_nodes: ${NUMBER_OF_MASTERS}

then docker run like this,it works!

#Master
docker run --name elasticsearch-master \
    --detach \
    --privileged \
    --volume /data/elasticsearch:/data \
    -p 9300:9300 \
    -e CLUSTER_NAME=my-es \
    -e ES_HEAP_SIZE=256m \
    -e NODE_DATA=false \
    -e HTTP_ENABLE=false \
    -e AWS_KEY=*key* \
    -e AWS_SECRET=*secret* \
    -e GROUP_NAME=v2-tst-host1-sg \
    my_registry/elasticsearch:0.1.3
#client
docker run --name elasticsearch-client \
    --detach \
    --privileged \
    --volume /data/elasticsearch:/data \
    -p 9200:9200 \
    -e CLUSTER_NAME=my-es \
    -e ES_HEAP_SIZE=256m \
    -e NODE_MASTER=false \
    -e NODE_DATA=false \
    -e AWS_KEY=*key* \
    -e AWS_SECRET=*secret* \
    -e GROUP_NAME=v2-tst-host1-sg \
    my_registry/elasticsearch:0.1.3
#data
docker run --name elasticsearch-data \
    --detach \
    --privileged \
    --volume /data/elasticsearch:/data \
    -e CLUSTER_NAME=my-es \
    -e ES_HEAP_SIZE=1024m \
    -e NODE_MASTER=false \
    -e HTTP_ENABLE=false \
    -e AWS_KEY=*key* \
    -e AWS_SECRET=*secret* \
    -e GROUP_NAME=v2-tst-host1-sg \
    my_registry/elasticsearch:0.1.3

from docker-elasticsearch-aws.

pires avatar pires commented on June 18, 2024

So you're using tour own images.

from docker-elasticsearch-aws.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.