Skip to content

Instantly share code, notes, and snippets.

@micheleorsi
Last active August 29, 2015 14:05
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 micheleorsi/822192bbe0904cca3f7f to your computer and use it in GitHub Desktop.
Save micheleorsi/822192bbe0904cca3f7f to your computer and use it in GitHub Desktop.
Installation Elasticsearch / LogStash on Ubuntu in Amazon AWS
# set public key
# change timezone to PST (sudo dpkg-reconfigure tzdata)
# update VM
$ sudo apt-get update && sudo apt-get upgrade
# install java
$ sudo apt-get -y install openjdk-7-jdk
$ java -version
# install repo
$ wget -O - http://packages.elasticsearch.org/GPG-KEY-elasticsearch | apt-key add -
$ deb http://packages.elasticsearch.org/logstash/1.3/debian stable main
# install logstash
$ wget https://download.elasticsearch.org/logstash/logstash/logstash-1.4.2.tar.gz
$ tar zxvf logstash-1.4.2.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment