Установка Elasticsearch, Logstash, Kibana (ELK Stack) — различия между версиями
Root (обсуждение | вклад) |
Root (обсуждение | вклад) |
||
Строка 29: | Строка 29: | ||
# curl 127.0.0.1:9200 | # curl 127.0.0.1:9200 | ||
{ | { | ||
− | "name" : " | + | "name" : "elk-srv", |
"cluster_name" : "elasticsearch", | "cluster_name" : "elasticsearch", | ||
− | "cluster_uuid" : " | + | "cluster_uuid" : "xiaIdZSPT53EhiGIWQ5SSg", |
"version" : { | "version" : { | ||
− | "number" : "7. | + | "number" : "7.12.1", |
"build_flavor" : "default", | "build_flavor" : "default", | ||
"build_type" : "deb", | "build_type" : "deb", | ||
− | "build_hash" : " | + | "build_hash" : "3436837139b9c6b6d23c325660750651f10d3343b7", |
− | "build_date" : "2021- | + | "build_date" : "2021-04-20T20:56:39.040728659Z", |
"build_snapshot" : false, | "build_snapshot" : false, | ||
− | "lucene_version" : "8. | + | "lucene_version" : "8.8.0", |
"minimum_wire_compatibility_version" : "6.8.0", | "minimum_wire_compatibility_version" : "6.8.0", | ||
"minimum_index_compatibility_version" : "6.0.0-beta1" | "minimum_index_compatibility_version" : "6.0.0-beta1" |
Версия 10:55, 6 мая 2021
Настраиваем хранилище для логов на базе Elasticsearch, Logstash и Kibana(ELK Stack). В это хранилище можно настроить отправку практически любых логов в разных форматах и большого объема.
Установка Elasticsearch
Копируем ключ репозитория
# wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
Добавляем репозиторий Elasticsearch в систему
# echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list
Устанавливаем Elasticsearch
# apt update && apt install elasticsearch
Добавляем Elasticsearch в автозагрузку и запускаем
# systemctl daemon-reload # systemctl enable elasticsearch.service # systemctl start elasticsearch.service
Проверяем
# systemctl status elasticsearch.service
Для проверки, выполним запрос к Elasticsearch о его статусе
# curl 127.0.0.1:9200 { "name" : "elk-srv", "cluster_name" : "elasticsearch", "cluster_uuid" : "xiaIdZSPT53EhiGIWQ5SSg", "version" : { "number" : "7.12.1", "build_flavor" : "default", "build_type" : "deb", "build_hash" : "3436837139b9c6b6d23c325660750651f10d3343b7", "build_date" : "2021-04-20T20:56:39.040728659Z", "build_snapshot" : false, "lucene_version" : "8.8.0", "minimum_wire_compatibility_version" : "6.8.0", "minimum_index_compatibility_version" : "6.0.0-beta1" }, "tagline" : "You Know, for Search" }