Skip to content

Instantly share code, notes, and snippets.

@tedslittlerobot
Last active August 29, 2015 14:09
Show Gist options
  • Save tedslittlerobot/e94d30efbd7b9ff2f612 to your computer and use it in GitHub Desktop.
Save tedslittlerobot/e94d30efbd7b9ff2f612 to your computer and use it in GitHub Desktop.
Installing Elasticsearch on Ubuntu
sudo apt-get update -y
sudo apt-get install openjdk-7-jre -y
wget -O elasticsearch.tar.gz https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.0.tar.gz
tar -xzvf elasticsearch.tar.gz
rm elasticsearch.tar.gz
mv elasticsearch-1.4.0 elasticsearch
./elasticsearch/bin/elasticsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment