Skip to content

Instantly share code, notes, and snippets.

@sbansal
Created January 22, 2014 12:44
Show Gist options
  • Save sbansal/8558121 to your computer and use it in GitHub Desktop.
Save sbansal/8558121 to your computer and use it in GitHub Desktop.
Ubuntu VPS elastic search installation
# update the available packages
$ apt-get update
$ apt-get -y install curl git-core python-software-properties
# Java installation as suggested by elasticsearch folks
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java7-installer
$ java -version
# Install elasticsearch
$ wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.10.deb
$ dpkg -i elasticsearch-0.90.10.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment