File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
docs/reference/setup/install Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,13 @@ The MacOS archive for {es} v{version} can be downloaded and installed as follows
56
56
57
57
["source","sh",subs="attributes"]
58
58
--------------------------------------------
59
- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{version}-darwin-x86_64.tar.gz
60
- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{version}-darwin-x86_64.tar.gz.sha512
61
- shasum -a 512 -c elasticsearch-{version}-darwin-x86_64.tar.gz.sha512 <1>
59
+ curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{version}-darwin-x86_64.tar.gz
60
+ curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{version}-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
62
61
tar -xzf elasticsearch-{version}-darwin-x86_64.tar.gz
63
62
cd elasticsearch-{version}/ <2>
64
63
--------------------------------------------
64
+ // NOTCONSOLE
65
+
65
66
<1> Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output
66
67
`elasticsearch-{version}-darwin-x86_64.tar.gz: OK`.
67
68
<2> This directory is known as `$ES_HOME`.
You can’t perform that action at this time.
0 commit comments