Elasticsearch on Docker Tutorial | Elastic Docker Containers Configuration - Sematext

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 17

  • @__xVIRUSx__
    @__xVIRUSx__ 8 месяцев назад

    Thanks for saving the day brother, I really needed this video ❤

    • @Sematext
      @Sematext  8 месяцев назад

      Glad it helped! :)

  • @PEislander27
    @PEislander27 Год назад +3

    good stuff, i dont typically use captions but i noticed you put extra useful information in them (notably 2:37) thought this was pre cool!

  • @fhm-bh5vg
    @fhm-bh5vg 5 месяцев назад +3

    If anyone else is having the problem with elastic nodes quiting with exited code 78 error add this to the end of the yml file, I think the issue is related to nodes not being able to communicate with each other.
    networks:
    elastic:
    driver: bridge

  • @LukaSpetic
    @LukaSpetic Год назад +1

    great video and super helpful

  • @lordofenron
    @lordofenron Год назад +1

    This was super helpful :D Thanks!

  • @BorisShulman
    @BorisShulman Год назад +1

    The video was helpful. Thank You

  • @vargasbj
    @vargasbj Год назад +1

    thank you . But you dont event did a simple single search for us to see the whole thing running. What is this ???

  • @kadiryaren5564
    @kadiryaren5564 Год назад

    thank you for resources :)

  • @adiariel6726
    @adiariel6726 Год назад +3

    using your yml file on ubuntu server 23.04 with docker pre installed + installing docker compose, then running the docker compose up with that yml file get the following errors:
    ERROR: for kibana Container "1f95b539ccb1" is unhealthy.
    than docker ps -a shows only es01 es02 es03 with status Exited (78)
    any suggestions?

  • @yasinnabi
    @yasinnabi 2 года назад +1

    You always have an excuse that stops you from starting a business, Then you are the one to demolish the excuses and get started ! a fellow creator;';';'

  • @danioli48
    @danioli48 6 месяцев назад

    the left eye brow

  • @SamuelEdge
    @SamuelEdge 10 месяцев назад

    Sigh... to error is human: "numberical" (1:10)... But great overview on dockerizing ElasticSearch!

    • @Sematext
      @Sematext  10 месяцев назад

      Oooops. But at least it's a cute and logical typo. ;)

  • @proxayfox
    @proxayfox Год назад

    Hey man, really apcicate the video and it's helped a lot
    The only thing I found a little hard to figure out, was If I wanted to set the path of the volumes myself I would run into errors.
    But I found that you could do it with this. Might be helpful to add that in maybe for people that want to customise this, up to you
    `
    volumes:
    es-data-es01:
    driver: local
    driver_opts:
    type: none
    device: /path/to/dir/es-data-es01
    o: bind
    es-data-es02:
    driver: local
    driver_opts:
    type: none
    device: /path/to/dir/es-data-es02
    o: bind
    es-data-es03:
    driver: local
    driver_opts:
    type: none
    device: /path/to/dir/es-data-es03
    o: bind
    `
    Also, would you know of a good place to figure out how to add in logstash/beats
    Overall thank you for the tutorial