mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Polish SHA comparison in reference doc * Update targz.asciidoc
This commit is contained in:
parent
2b04ba199c
commit
b934f8dd49
1 changed files with 7 additions and 7 deletions
|
@ -32,13 +32,13 @@ The Linux archive for Kibana v{version} can be downloaded and installed as follo
|
|||
|
||||
["source","sh",subs="attributes"]
|
||||
--------------------------------------------
|
||||
wget https://artifacts.elastic.co/downloads/kibana/kibana-{version}-linux-x86_64.tar.gz
|
||||
shasum -a 512 kibana-{version}-linux-x86_64.tar.gz <1>
|
||||
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}-linux-x86_64/ <2>
|
||||
--------------------------------------------
|
||||
<1> Compare the SHA produced by `shasum` with the
|
||||
https://artifacts.elastic.co/downloads/kibana/kibana-{version}-linux-x86_64.tar.gz.sha512[published SHA].
|
||||
<1> Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output
|
||||
`kibana-{version}-linux-x86_64.tar.gz: OK`.
|
||||
<2> This directory is known as `$KIBANA_HOME`.
|
||||
|
||||
endif::[]
|
||||
|
@ -60,12 +60,12 @@ The Darwin archive for Kibana v{version} can be downloaded and installed as foll
|
|||
["source","sh",subs="attributes"]
|
||||
--------------------------------------------
|
||||
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-{version}-darwin-x86_64.tar.gz
|
||||
shasum -a 512 kibana-{version}-darwin-x86_64.tar.gz <1>
|
||||
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}-darwin-x86_64/ <2>
|
||||
--------------------------------------------
|
||||
<1> Compare the SHA produced by `shasum` with the
|
||||
https://artifacts.elastic.co/downloads/kibana/kibana-{version}-darwin-x86_64.tar.gz.sha512[published SHA].
|
||||
<1> Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output
|
||||
`kibana-{version}-darwin-x86_64.tar.gz: OK`.
|
||||
<2> This directory is known as `$KIBANA_HOME`.
|
||||
|
||||
Alternatively, you can download the following package, which contains only
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue