Created
December 19, 2016 12:54
-
-
Save drolfe/75fa92c47f5176a7e402952662792927 to your computer and use it in GitHub Desktop.
ELK 5.1 ubuntu16 install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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