Lab 1.3: Install Kibana

In this lab we will install Kibana

Task 1 Install Kibana

  1. Install Kibana

    sudo apt-get install kibana
    
  2. Change config file to set Outside IP address

    sudo vi /etc/kibana/kibana.yml
    

Note

Kibana is served by a back end server. This setting specifies the port to use. Server port is set as default Kibana Port 5601. Server host should be set to the UDF Management IP address 10.1.1.5 as we will be accessing this via the Linux Jumphost. The URL of the Elasticsearch instance to use for all your queries.

kibana1

  1. Kibana restart

    sudo systemctl restart kibana.service
    
  2. To configure Kibana to start automatically when the system boots up, run the following commands:

    sudo /bin/systemctl daemon-reload
    sudo /bin/systemctl enable kibana.service
    
  3. Kibana Control

    sudo systemctl start kibana.service
    sudo systemctl stop kibana.service
    
  4. Check Kibana is running via command-line:

kibana2

  1. Access Kibana via Linux Jumpbox to verify access

kibana3