Created
September 14, 2017 11:27
-
-
Save EikeDehling/355d53bf3eab490fe21a84048da1d65b to your computer and use it in GitHub Desktop.
Kibana install script debian (as root)
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
# Install elasticsearch | |
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add - | |
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 | |
apt-get update | |
apt-get install kibana | |
# Configure elastic | |
sed -i '/#server.host: 192.168.0.1/c\server.host: 0.0.0.0' /etc/kibana/kibana.yml | |
# Start! | |
systemctl daemon-reload | |
systemctl enable kibana.service | |
systemctl start kibana.service | |
# Check it runs | |
curl http://localhost:5601 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment