mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Docs: Add note about oss repositories for deb/rpm (#26475)
* Docs: Add note about oss repositories for deb/rpm Add documentation on the `oss-*` yum and apt repositories. * Specify kibana-oss package name
This commit is contained in:
parent
4cd2360db4
commit
d3b88c28f6
2 changed files with 59 additions and 0 deletions
|
@ -99,6 +99,35 @@ Examine +/etc/apt/sources.list.d/kibana-{major-version}.list+ for the duplicate
|
|||
|
||||
endif::[]
|
||||
|
||||
ifeval::["{release-state}"!="unreleased"]
|
||||
|
||||
[NOTE]
|
||||
==================================================
|
||||
|
||||
An alternative package, `kibana-oss`, which contains only features that are available under the
|
||||
Apache 2.0 license is also available. To install it, use the following sources list:
|
||||
|
||||
ifeval::["{release-state}"=="prerelease"]
|
||||
|
||||
["source","sh",subs="attributes,callouts"]
|
||||
--------------------------------------------------
|
||||
echo "deb https://artifacts.elastic.co/packages/oss-{major-version}-prerelease/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-{major-version}.list
|
||||
--------------------------------------------------
|
||||
|
||||
endif::[]
|
||||
|
||||
ifeval::["{release-state}"!="prerelease"]
|
||||
|
||||
["source","sh",subs="attributes,callouts"]
|
||||
--------------------------------------------------
|
||||
echo "deb https://artifacts.elastic.co/packages/oss-{major-version}/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-{major-version}.list
|
||||
--------------------------------------------------
|
||||
|
||||
endif::[]
|
||||
|
||||
==================================================
|
||||
|
||||
endif::[]
|
||||
|
||||
[[install-deb]]
|
||||
==== Download and install the Debian package manually
|
||||
|
|
|
@ -91,6 +91,36 @@ sudo zypper install kibana <3>
|
|||
|
||||
endif::[]
|
||||
|
||||
ifeval::["{release-state}"!="unreleased"]
|
||||
|
||||
[NOTE]
|
||||
==================================================
|
||||
|
||||
An alternative package, `kibana-oss`, which contains only features that are available under the
|
||||
Apache 2.0 license is also available. To install it, use the following `baseurl` in your `kibana.repo` file:
|
||||
|
||||
ifeval::["{release-state}"=="prerelease"]
|
||||
|
||||
["source","sh",subs="attributes,callouts"]
|
||||
--------------------------------------------------
|
||||
baseurl=https://artifacts.elastic.co/packages/oss-{major-version}-prerelease/yum
|
||||
--------------------------------------------------
|
||||
|
||||
endif::[]
|
||||
|
||||
ifeval::["{release-state}"!="prerelease"]
|
||||
|
||||
["source","sh",subs="attributes,callouts"]
|
||||
--------------------------------------------------
|
||||
baseurl=https://artifacts.elastic.co/packages/oss-{major-version}/yum
|
||||
--------------------------------------------------
|
||||
|
||||
endif::[]
|
||||
|
||||
==================================================
|
||||
|
||||
endif::[]
|
||||
|
||||
[[install-rpm]]
|
||||
==== Download and install the RPM manually
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue