-
-
Save jlisbz/de02d85545eb0a47bc60 to your computer and use it in GitHub Desktop.
Install Kibana on Ubuntu
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 https://download.elastic.co/kibana/kibana/kibana-4.3.1-linux-x64.tar.gz | |
| gunzip kibana-4.3.1-linux-x64.tar.gz | |
| tar -xvf kibana-4.3.1-linux-x64.tar | |
| mkdir /opt/kibana | |
| cp -Rrvf kibana-4.3.1-linux-x64/* /opt/kibana/ | |
| cd /etc/init.d/ | |
| wget https://gist.githubusercontent.com/thisismitch/8b15ac909aed214ad04a/raw/bce61d85643c2dcdfbc2728c55a41dab444dca20/kibana4 | |
| chmod +x /etc/init.d/kibana4 | |
| update-rc.d kibana4 defaults 96 9 | |
| /etc/init.d/kibana4 restart | |
| sudo iptables -I INPUT -p tcp --dport 5601 -j ACCEPT | |
| sudo iptables-save | |
| # install fail2ban | |
| sudo apt-get update | |
| sudo apt-get install fail2ban | |
| now, visit http://yourhost:5601 | |
| credit - http://www.unixmen.com/install-kibana-ubuntu-14-04/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment