Elasticsearch와 Kibana(단일 노드) 설치 및 통합 방법 테스트 환경 $ cat /etc/os-release NAME=”Amazon Linux” VERSION=”2″ ID=”amzn” ID_LIKE=”centos rhel fedora” VERSION_ID=”2″ PRETTY_NAME=”Amazon Linux 2″ ANSI_COLOR=”0;33″ CPE_NAME=”cpe:2.3:o:amazon:amazon_linux:2″ HOME_URL=”https://amazonlinux.com/” Elasticsearch 설치 Elasticsearch 다운로드 페이지 https://www.elastic.co/downloads/elasticsearch https://www.elastic.co/guide/en/elasticsearch/reference/8.6/rpm.html#rpm-repo Elasticsearch 리포지토리 vim /etc/yum.repos.d/elasticsearch.repo (elasticsearch) name=Elasticsearch repository for 8.x packages baseurl=https://artifacts.elastic.co/packages/8.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=0 autorefresh=1 type=rpm-md Elasticsearch 패키지 설치 yum install –enablerepo=elasticsearch … Read more