Skip to content

Instantly share code, notes, and snippets.

@drolfe
Created December 19, 2016 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drolfe/75fa92c47f5176a7e402952662792927 to your computer and use it in GitHub Desktop.
Save drolfe/75fa92c47f5176a7e402952662792927 to your computer and use it in GitHub Desktop.
ELK 5.1 ubuntu16 install
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
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 install apt-transport-https
sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get update
sudo apt-get -y install oracle-java8-installer
sudo apt-get install elasticsearch
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable elasticsearch.service
sudo systemctl start elasticsearch.service
sudo systemctl stop elasticsearch.service
sudo apt-get install logstash
sudo systemctl start logstash.service
sudo apt-get install kibana
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable kibana.service
sudo systemctl start kibana.service
sudo systemctl stop kibana.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment