You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shasum -a 512 -c elasticsearch-{{version.stack}}-linux-x86_64.tar.gz.sha512 <1>
52
56
tar -xzf elasticsearch-{{version.stack}}-linux-x86_64.tar.gz
53
57
cd elasticsearch-{{version.stack}}/ <2>
54
58
```
55
-
56
59
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<version>-linux-x86_64.tar.gz: OK`.
shasum -a 512 -c elasticsearch-<specific.version>-linux-x86_64.tar.gz.sha512 <1>
69
+
tar -xzf elasticsearch-<specific.version>-linux-x86_64.tar.gz
70
+
cd elasticsearch-<specific.version>/ <2>
71
+
```
72
+
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<version>-linux-x86_64.tar.gz: OK`.
73
+
2. This directory is known as `$ES_HOME`.
60
74
:::
75
+
::::
76
+
61
77
62
78
### MacOS [install-macos]
63
79
64
-
The MacOS archive for {{es}} {{version.stack}} can be downloaded and installed as follows:
80
+
The MacOS archive for {{es}} can be downloaded and installed as follows:
65
81
82
+
::::{tab-set}
83
+
84
+
:::{tab-item} Latest
85
+
To download and install the {{es}} {{version.stack}} archive, enter:
curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{{version.stack}}-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
69
89
tar -xzf elasticsearch-{{version.stack}}-darwin-x86_64.tar.gz
70
90
cd elasticsearch-{{version.stack}}/ <2>
71
91
```
72
-
73
92
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<version>-darwin-x86_64.tar.gz: OK`.
74
93
2. This directory is known as `$ES_HOME`.
94
+
:::
95
+
96
+
:::{tab-item} Specific version
97
+
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
101
+
tar -xzf elasticsearch-<specific.version>-darwin-x86_64.tar.gz
102
+
cd elasticsearch-<specific.version>/ <2>
103
+
```
104
+
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<specific-version>-darwin-x86_64.tar.gz: OK`.
Alternatively, you can add a security override by following the instructions in the *If you want to open an app that hasn’t been notarized or is from an unidentified developer* section of [Safely open apps on your Mac](https://support.apple.com/en-us/HT202491).
2. Copy the terminal output from the install command to a local file. In particular, you’ll need the password for the built-in `elastic` superuser account. The output also contains the commands to enable {{es}} to [run as a service](#running-systemd).
Copy file name to clipboardExpand all lines: deploy-manage/deploy/self-managed/install-elasticsearch-with-zip-on-windows.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,17 +41,31 @@ On Windows, the {{es}} {{ml}} feature requires the Microsoft Universal C Runtime
41
41
42
42
## Step 1: Download and install the `.zip` package [install-windows]
43
43
44
+
::::{tab-set}
45
+
46
+
:::{tab-item} Latest
44
47
% link url manually set
45
48
Download the `.zip` archive for {{es}} {{version.stack}} from: [https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{{version.stack}}-windows-x86_64.zip](https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{{version.stack}}-windows-x86_64.zip)
46
49
47
-
Unzip it with your favorite unzip tool. This will create a folder called `elasticsearch-<version>`, which we will refer to as `%ES_HOME%`. In a terminal window, `cd` to the `%ES_HOME%` directory, for instance:
50
+
Unzip it with your favorite unzip tool. This will create a folder called `elasticsearch-{{version.stack}}`, which we will refer to as `%ES_HOME%`. In a terminal window, `cd` to the `%ES_HOME%` directory, for example:
48
51
49
52
```sh subs=true
50
53
cd C:\Program Files\elasticsearch-{{version.stack}}
51
54
```
55
+
:::
56
+
57
+
:::{tab-item} Specific version
58
+
Download the `.zip` archive for the {{es}} version that you want from the [Past Releases](https://www.elastic.co/downloads/past-releases) page.
59
+
60
+
Unzip it with your favorite unzip tool. This will create a folder called `elasticsearch-<specific-version>`, which we will refer to as `%ES_HOME%`. In a terminal window, `cd` to the `%ES_HOME%` directory, for example:
0 commit comments