본문 바로가기

프로그래밍/ElasticSearch

Elasticsearch 7.9 + Kibana 7.9 설치 및 실행

설치 환경은 Windows 입니다.

JDK 최소 1.8 이상이 설치되어 있어야 합니다.

 

 

프로그램 다운로드

Elastic 사이트 접속 후 다운로드 받는다.

www.elastic.co/kr/start

 

Get Started with Elasticsearch, Kibana, and the Elastic Stack | Elastic

Activate additional features Optional: Unlock Platinum features such as machine learning, security, alerting, graph analytics, and more with a free, 30-day trial.

www.elastic.co

elasticsearch-7.9.0-windows-x86_64.zip
kibana-7.9.0-windows-x86_64.zip

위와 같이 두개의 파일을 받음

 

 


 

디렉토리 구조 및 기본 설정

 

[ Elasticsearch ]

압축 해제 후 Elasticsearch 디렉토리 구조

 

실행:

    bin 디렉토리로 이동 후 elasticsearch.bat 실행

    http://localhost:9200 로 서비스 실행여부를 확인

설정:

    config 디렉토리 안에 elasticsearch.yml 파일 필요시 수정해서 설정

    저는 기본값으로 했습니다.

플러그인:

    한글 형태소 분석을 위해 Elasticsearch의 Nori 형태소 분석기 설치

    cmd를 열고 Elasticsearch 의 bin 디렉토리로 이동

    bin/elasticsearch-plugin install analysis-nori

 

 

 

 

[ Kibana ]

압축 해제 후 Kibana 디렉토리 구조

 

실행:

    bin 디렉토리로 이동 후 kibana.bat 실행

    http://localhost:5601 로 서비스 실행여부를 확인

설정:

    config 디렉토리 안에 kibana.yml 파일을 수정해서 설정

    server.host: "0.0.0.0" 으로 설정

    나머지는 기본값으로 했습니다.

 

 

 

 

 

 

 

 

Elasticsearch와 Kibana가 정상으로 실행되면

브라우저에서 http://localhost:5601를 확인하면 됩니다.

 

 

추후 편의상

Kibana의 Console을 이용해서 작업 예정

 


 

두 파일의 버전이 달라서 서비스가 올라가지 않는 문제가 발생했었습니다.

다운로드 받은 파일의 버전 확인 필수!!

 

 

 

 

 

'프로그래밍 > ElasticSearch' 카테고리의 다른 글

Elasticsearch _termvectors  (0) 2020.08.28
Elasticsearch 명령어 모음  (0) 2020.08.28
Elasticsearch 특징  (0) 2020.08.26
Elasticsearch 설치  (0) 2016.07.18