Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Created February 5, 2014 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkuchiki/8817469 to your computer and use it in GitHub Desktop.
Save tkuchiki/8817469 to your computer and use it in GitHub Desktop.
install Elasticsearch & Kibana
# install Java
https://gist.github.com/tkuchiki/8816128
# Elasticsearch
rpm -ivh https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.11.noarch.rpm
# Kibana
KIBANA_MAJOR_VERSION=3
KIBANA_MINOR_VERSION=0
KIBANA_REVISION=0
KIBANA_MILESTONE=4
KIBANA="kibana-${KIBANA_MAJOR_VERSION}.${KIBANA_MINOR_VERSION}.${KIBANA_REVISION}milestone${KIBANA_MILESTONE}"
https://download.elasticsearch.org/kibana/kibana/${KIBANA}.tar.gz
tar zxvf ${KIBANA}.tar.gz
cd $KIBANA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment