mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[DOCS] Add brew install instructions. (#38417)
* [DOCS] Add brew install instructions. Closes #38220 * Link fix * Removed inline notes from index * Fixed table format * Updated with tap changes * Comments from Deb
This commit is contained in:
parent
d4abdc7a06
commit
8df31cb755
2 changed files with 73 additions and 1 deletions
|
@ -47,12 +47,17 @@ downloaded from the Elastic Docker Registry.
|
|||
+
|
||||
<<docker,Running Kibana on Docker>>
|
||||
|
||||
`brew`::
|
||||
|
||||
Formulae are available from the Elastic Homebrew tap for installing {kib} on macOS with the Homebrew package manager.
|
||||
+
|
||||
<<brew>>
|
||||
|
||||
IMPORTANT: If your Elasticsearch installation is protected by
|
||||
{xpack-ref}/elasticsearch-security.html[{security}] see
|
||||
{kibana-ref}/using-kibana-with-security.html[Configuring Security in Kibana] for
|
||||
additional setup instructions.
|
||||
|
||||
|
||||
include::install/targz.asciidoc[]
|
||||
|
||||
include::install/deb.asciidoc[]
|
||||
|
@ -60,3 +65,5 @@ include::install/deb.asciidoc[]
|
|||
include::install/rpm.asciidoc[]
|
||||
|
||||
include::install/windows.asciidoc[]
|
||||
|
||||
include::install/brew.asciidoc[]
|
||||
|
|
65
docs/setup/install/brew.asciidoc
Normal file
65
docs/setup/install/brew.asciidoc
Normal file
|
@ -0,0 +1,65 @@
|
|||
[[brew]]
|
||||
=== Install {kib} on macOS with Homebrew
|
||||
|
||||
Elastic publishes Homebrew formulae so you can install {kib} with the https://brew.sh/[Homebrew] package manager.
|
||||
|
||||
To install with Homebrew, you first need to tap the Elastic Homebrew repository:
|
||||
|
||||
[source,sh]
|
||||
-------------------------
|
||||
brew tap elastic/tap
|
||||
-------------------------
|
||||
|
||||
Once you've tapped the Elastic Homebrew repo, you can use `brew install` to
|
||||
install the default distribution of {kib}:
|
||||
|
||||
[source,sh]
|
||||
-------------------------
|
||||
brew install elastic/tap/kibana-full
|
||||
-------------------------
|
||||
|
||||
This installs the most recently released default distribution of {kib}. To install the OSS distribution,
|
||||
specify `elastic/tap/kibana-oss`.
|
||||
|
||||
[[brew-layout]]
|
||||
==== Directory layout for Homebrew installs
|
||||
|
||||
When you install {kib} with `brew install`, the config files, logs,
|
||||
and data directory are stored in the following locations.
|
||||
|
||||
[cols="<h,<,<m,<m",options="header",]
|
||||
|=======================================================================
|
||||
| Type | Description | Default Location | Setting
|
||||
| home
|
||||
| Kibana home directory or `$KIBANA_HOME`
|
||||
| /usr/local/var/homebrew/linked/kibana
|
||||
d|
|
||||
|
||||
| bin
|
||||
| Binary scripts including `kibana` to start a node
|
||||
and `kibana-plugin` to install plugins
|
||||
| /usr/local/var/homebrew/linked/kibana/bin
|
||||
d|
|
||||
|
||||
| conf
|
||||
| Configuration files including `kibana.yml`
|
||||
| /usr/local/etc/kibana
|
||||
d|
|
||||
|
||||
| data
|
||||
| The location of the data files of each index / shard allocated
|
||||
on the node. Can hold multiple locations.
|
||||
| /usr/local/var/lib/kibana
|
||||
| path.data
|
||||
|
||||
| logs
|
||||
| Log files location.
|
||||
| /usr/local/var/log/kibana
|
||||
| path.logs
|
||||
|
||||
| plugins
|
||||
| Plugin files location. Each plugin will be contained in a subdirectory.
|
||||
| /usr/local/var/homebrew/linked/kibana/plugins
|
||||
d|
|
||||
|
||||
|=======================================================================
|
Loading…
Add table
Add a link
Reference in a new issue