목록Elastic Stack (2)
jeongwon

출처/참고: 엘라스틱서치 실무가이드 주제: 다운로드 받은 스냅숏의 인덱스 화 스냅숏 생성 논리적 스냅숏 생성 curl -XPUT 'http://localhost:9200/_snapshot/javacafe' -d '{"type": "fs", "settings": {"location": "/home/elastic/practice/book_backup/search_example", "compress": true}}' 확인 curl -XGET 'http://localhost:9200/_snapshot/javcafe/_all' 결과 (snapshot 명: movie-search, index명: movie_search) {"snapshots":[{"snapshot":"movie-search","uuid":"Kz5k..
구성 - node1: ES, Kibana - node2: ES, Logstash - node3: ES, Filebeat 설정 logstash-sample.conf input { beats { port => 5044 } } output { elasticsearch { hosts => ["https://node1:9200"] index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}" user => "elastic" password => "fhdlem@201" cacert => "/home/elastic/elasticsearch-8.5.3/config/certs/http_ca.crt" } stdout{} } filebeat.yml # ====..