Skip to content

Commit

Permalink
[docs] Add plugin install instructions for packages. Closes #8845
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Nov 2, 2016
1 parent 80aaaf2 commit ad6a4f7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/plugins.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ $ bin/kibana-plugin install file:///some/local/path/x-pack.zip -d path/to/direct

NOTE: This command creates the specified directory if it does not already exist.

[float]
=== Installing Plugins with Linux packages

The Kibana server needs to be able to write to files in the `optimize` directory. If you're installing plugins using sudo or su you'll
want to make sure these commands are ran as the user `kibana`. This user is already added for you as part of the package installation.

[source,shell]
$ sudo -u kibana bin/kibana-plugin install x-pack

If plugins were installed as a different user and the server is not starting, then you will need to change the owner of these files:

[source,shell]
$ chown -R kibana:kibana /path/to/kibana/optimize

== Updating & Removing Plugins

To update a plugin, remove the current version and reinstall the plugin.
Expand Down

0 comments on commit ad6a4f7

Please sign in to comment.