@@ -14,19 +14,29 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
14141 . Download the tarball:
1515
1616 ``` bash
17- curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}.tar.gz -o opendistroforelasticsearch-{{site.odfe_version}}.tar.gz
17+ # x64
18+ curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz -o opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz
19+ # ARM64
20+ curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz -o opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz
1821 ```
1922
20231 . Download the checksum:
2124
2225 ``` bash
23- curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}.tar.gz.sha512 -o opendistroforelasticsearch-{{site.odfe_version}}.tar.gz.sha512
26+ # x86
27+ curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz.sha512 -o opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz.sha512
28+ # ARM64
29+ curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz.sha512 -o opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz.sha512
2430 ```
2531
26321 . Verify the tarball against the checksum:
2733
34+
2835 ``` bash
29- shasum -a 512 -c opendistroforelasticsearch-{{site.odfe_version}}.tar.gz.sha512
36+ # x64
37+ shasum -a 512 -c opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz.sha512
38+ # ARM64
39+ shasum -a 512 -c opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz.sha512
3040 ```
3141
3242 On CentOS, you might not have ` shasum ` . Install this package:
@@ -40,7 +50,11 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
40501 . Extract the TAR file to a directory and change to that directory:
4151
4252 ``` bash
43- tar -zxf opendistroforelasticsearch-{{site.odfe_version}}.tar.gz
53+ # x64
54+ tar -zxf opendistroforelasticsearch-{{site.odfe_version}}-linux-x64.tar.gz
55+ cd opendistroforelasticsearch-{{site.odfe_version}}
56+ # ARM64
57+ tar -zxf opendistroforelasticsearch-{{site.odfe_version}}-linux-arm64.tar.gz
4458 cd opendistroforelasticsearch-{{site.odfe_version}}
4559 ```
4660
0 commit comments