Skip to content

Instantly share code, notes, and snippets.

@fabiotatsuo
Last active December 16, 2016 16:21
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save fabiotatsuo/fc62b4468dc53c1da0d4 to your computer and use it in GitHub Desktop.
Save fabiotatsuo/fc62b4468dc53c1da0d4 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