Skip to content

Instantly share code, notes, and snippets.

@jvandevelde
Last active June 5, 2017 10:50
Show Gist options
  • Save jvandevelde/5868363 to your computer and use it in GitHub Desktop.
Save jvandevelde/5868363 to your computer and use it in GitHub Desktop.
Install ElasticSearch 0.90.1 on Ubuntu 12.04.2 LTS
#!/bin/bash
cd ~
# Install JDK
sudo apt-get update
sudo apt-get install openjdk-7-jre-headless -y
# Install & Start ES 0.90.1
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.1.deb
sudo dpkg -i elasticsearch-0.90.1.deb
sudo service elasticsearch start
# Test by going to http://localhost:9200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment