Skip to content

Instantly share code, notes, and snippets.

@cigolpl
Last active November 28, 2016 12:55
Show Gist options
  • Save cigolpl/8352770ed22ba99548c8c6a70cd457de to your computer and use it in GitHub Desktop.
Save cigolpl/8352770ed22ba99548c8c6a70cd457de to your computer and use it in GitHub Desktop.
Installing Elasticsearch on Ubuntu 14.04
#!/bin/sh
sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
sudo apt-get -y install oracle-java8-installer
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.2.deb
sudo dpkg -i elasticsearch-1.7.2.deb
sudo service elasticsearch start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment