Kibana is provided for Linux and Darwin as a .tar.gz
package. These packages
are the easiest formats to use when trying out Kibana.
This package contains both free and subscription features. Start a 30-day trial to try out all of the features.
The latest stable version of Kibana can be found on the Download Kibana page. Other versions can be found on the Past Releases page.
Note
|
macOS is supported for development purposes only and is not covered under the support SLA for production-supported operating systems. |
The Linux archive for Kibana v{version} can be downloaded and installed as follows:
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-{version}-linux-x86_64.tar.gz
curl https://artifacts.elastic.co/downloads/kibana/kibana-{version}-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
tar -xzf kibana-{version}-linux-x86_64.tar.gz
cd kibana-{version}/ <2>
-
Compares the SHA of the downloaded
.tar.gz
archive and the published checksum, which should outputkibana-{version}-linux-x86_64.tar.gz: OK
. -
This directory is known as
$KIBANA_HOME
.
Important
|
macOS Gatekeeper warnings
Apple’s rollout of stricter notarization requirements affected the notarization of the {version} {kib} artifacts. If macOS displays a dialog when you first run {kib} that interrupts it, you will need to take an action to allow it to run. To prevent Gatekeeper checks on the {kib} files, run the following command on the
downloaded xattr -d -r com.apple.quarantine <archive-or-directory> Alternatively, you can add a security override if a Gatekeeper popup appears by following the instructions in the How to open an app that hasn’t been notarized or is from an unidentified developer section of Safely open apps on your Mac. |
The Darwin archive for Kibana v{version} can be downloaded and installed as follows:
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-{version}-darwin-x86_64.tar.gz
curl https://artifacts.elastic.co/downloads/kibana/kibana-{version}-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
tar -xzf kibana-{version}-darwin-x86_64.tar.gz
cd kibana-{version}/ <2>
-
Compares the SHA of the downloaded
.tar.gz
archive and the published checksum, which should outputkibana-{version}-darwin-x86_64.tar.gz: OK
. -
This directory is known as
$KIBANA_HOME
.
Kibana loads its configuration from the $KIBANA_HOME/config/kibana.yml
file by default. The format of this config file is explained in
{kibana-ref}/settings.html[Configuring Kibana].
The .tar.gz
packages are entirely self-contained. All files and directories
are, by default, contained within $KIBANA_HOME
— the directory created when
unpacking the archive.
This is very convenient because you don’t have to create any directories to
start using Kibana, and uninstalling Kibana is as easy as removing the
$KIBANA_HOME
directory. However, it is advisable to change the default
locations of the config and data directories so that you do not delete
important data later on.
Type | Description | Default Location | Setting |
---|---|---|---|
home |
Kibana home directory or |
Directory created by unpacking the archive |
|
bin |
Binary scripts including |
|
|
config |
Configuration files including |
|
|
data |
The location of the data files written to disk by Kibana and its plugins |
|
|
plugins |
Plugin files location. Each plugin will be contained in a subdirectory. |
|