Installation and configuration of the ELK Stack (Elasticsearch, Logstash, Kibana)
# Overview and download homepage
http://www.elasticsearch.org/overview/elkdownloads/
#
# Prerequirements (Elasticsearch and Logstash are Java packages so please install Java JRE first)
#
# Install Java JRE package on Debian
apt-get install -y openjre-7-jre
#
# Elasticsearch (distributed restful search and analytics)
#
# Install Elasticsearch package on Debian
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.3.2.deb -P /tmp
dpkg -i /tmp/elasticsearch-1.3.2.deb
# Enable Elasticsearch daemon
update-rc.d elasticsearch defaults 95 10