elastic search 버전 확인
- 버전별 호환성이 있음.
- https://www.elastic.co/support/matrix#show_compatibility
- 사용중인 elasticsearch 버전이 v.2.3.3.
- 호환 버전 메트릭
es kibana logstash 2.3.x 4.5.x 2.0.x - 5.4.x - kibana 4.5.1 을 설치하는 것으로 결정
kibana 설치
- https://www.elastic.co/downloads/past-releases
- 4.5.1 버전 RPM 64bit 선택 (CENTOS)
- 다운로드 및 설치 예시
# download wget 'https://download.elastic.co/kibana/kibana/kibana-4.5.1-1.x86_64.rpm' # install sudo rpm -Uvh kibana-4.5.1-1.x86_64.rpm # /opt/kibana 에 설치됨.
설정
- config/kibana.yml 수정
# Kibana is served by a back end server. This controls which port to use. server.port: 5601 ... # The Elasticsearch instance to use for all your queries. elasticsearch.url: "http://yourelasticsearchhost:9200" ...
실행
- 실행
nohup sudo bin/kibana > nohup.out &
- http://localhost:5601
참고
- http://m.blog.naver.com/tmondev/220846929773
- https://www.elastic.co/downloads/kibana
- https://www.elastic.co/guide/en/kibana/4.5/index.html
- http://lucene.apache.org/core/3_5_0/queryparsersyntax.html
- https://www.digitalocean.com/community/tutorials/how-to-use-kibana-dashboards-and-visualizations
'dev' 카테고리의 다른 글
git push 된 commit reset 하기 (0) | 2017.11.02 |
---|---|
spring boot jsp utf-8 한글 문제 (1) | 2017.07.17 |
Cobertura - A code coverage utility for Java (0) | 2017.04.04 |
spring custom annotation 사용팁 (0) | 2017.03.24 |
어노테이션 밸류를 runtime 중에 변경하기 (0) | 2017.03.24 |