Skip to content

Latest commit

 

History

History
77 lines (45 loc) · 2.1 KB

plugins.md

File metadata and controls

77 lines (45 loc) · 2.1 KB
layout title parent nav_order
default
Standalone Kibana Plugin Install
Kibana
1

Standalone Kibana plugin install

If you don't want to use the all-in-one Open Distro for Elasticsearch installation options, you can install the Security, Alerting, and Index State Management plugins for Kibana individually.

Prerequisites

  1. An Elasticsearch cluster that uses a compatible version
  2. The corresponding Elasticsearch plugins installed on the cluster
  3. The corresponding version of Kibana (e.g. Kibana 6.7.1 works with Elasticsearch 6.7.1)

Install

Navigate to the Kibana home directory (likely /usr/share/kibana) and run the install command for each plugin.

Security

sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-security/opendistro_security_kibana_plugin-1.6.0.0.zip

This plugin provides a user interface for managing users, roles, mappings, action groups, and tenants.

Alerting

sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-alerting/opendistro-alerting-1.6.0.0.zip

This plugin provides a user interface for creating monitors and managing alerts.

Index State Management

sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-index-management/opendistro_index_management_kibana-1.6.0.0.zip

This plugin provides a user interface for managing policies.

List installed plugins

To check your installed plugins:

sudo bin/kibana-plugin list

Remove plugins

sudo bin/kibana-plugin remove <plugin-name>

Then restart Kibana. After the removal of any plugin, Kibana performs an "optimize" operation the next time you start it. This operation takes several minutes even on fast machines, so be patient.

Update plugins

Kibana doesn't update plugins. Instead, you have to remove and reinstall them:

sudo bin/kibana-plugin remove <plugin-name>
sudo bin/kibana-plugin install <plugin-name>