Install Kibanaedit

Kibana is a visualization application that gets its data from Elasticsearch. It provides a customizable and user-friendly UI in which you can combine various widget types to create your own dashboards. The dashboards can be easily saved, shared, and linked.

For getting started, we recommend installing Kibana on the same server as Elasticsearch, but it is not required. If you install the products on different servers, you’ll need to change the URL (IP:PORT) of the Elasticsearch server in the Kibana configuration file, config/kibana.yml, before starting Kibana.

Use the following commands to download and run Kibana.

deb or rpm:

curl -L -O https://artifacts.elastic.co/downloads/kibana/kibana-6.0.1-linux-x86_64.tar.gz
tar xzvf kibana-6.0.1-linux-x86_64.tar.gz
cd kibana-6.0.1-linux-x86_64/
./bin/kibana

mac:

curl -L -O https://artifacts.elastic.co/downloads/kibana/kibana-6.0.1-darwin-x86_64.tar.gz
tar xzvf kibana-6.0.1-darwin-x86_64.tar.gz
cd kibana-6.0.1-darwin-x86_64/
./bin/kibana

win:

  1. Download the Kibana 6.0.1 Windows zip file from the downloads page.
  2. Extract the contents of the zip file to a directory on your computer, for example, C:\Program Files.
  3. Open a command prompt as an Administrator and navigate to the directory that contains the extracted files, for example:

    cd C:\Program Files\kibana-6.0.1-windows
  4. Run the following command to start Kibana:

    bin\kibana.bat

You can find Kibana binaries for other operating systems on the Kibana downloads page.

Launch the Kibana web interfaceedit

To launch the Kibana web interface, point your browser to port 5601. For example, http://127.0.0.1:5601.

You can learn more about Kibana in the Kibana User Guide.