dev
kibana 설치 및 실행해보기
지렁이의야망
2017. 5. 31. 17:54
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