Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save angelxmoreno/9f14898054b01b12604f to your computer and use it in GitHub Desktop.
Save angelxmoreno/9f14898054b01b12604f to your computer and use it in GitHub Desktop.
Install ElasticSearch 1.6.0 Ubuntu 15.04
Install Java
sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
sudo aptitude -y install oracle-java8-installer
java -version
Install ElasticSearch
wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.6.0.deb
sudo dpkg -i elasticsearch-1.6.0.deb
sudo update-rc.d elasticsearch defaults 95 10
dpkg --contents elasticsearch-1.6.0.deb
sudo vim /etc/elasticsearch/elasticsearch.yml
network.host: localhost
sudo service elasticsearch start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment