Skip to content

Instantly share code, notes, and snippets.

@zouzias
Created May 18, 2017 15:51
Show Gist options
  • Save zouzias/44f214f922cc63c026e079d753e436be to your computer and use it in GitHub Desktop.
Save zouzias/44f214f922cc63c026e079d753e436be to your computer and use it in GitHub Desktop.
Install Elasticsearch 5.x on Ubuntu
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list
sudo apt-get update && sudo apt-get install elasticsearch
sudo update-rc.d elasticsearch defaults 95 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment