Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit f5202d6

Browse files
authored
Merge pull request #154 from opendistro/windows
Minimal Windows docs
2 parents a26f280 + a9529ee commit f5202d6

File tree

4 files changed

+107
-1
lines changed

4 files changed

+107
-1
lines changed

docs/install/docker-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Docker Security Configuration
44
parent: Install and Configure
5-
nav_order: 6
5+
nav_order: 7
66
---
77

88
# Docker security configuration

docs/install/windows.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
layout: default
3+
title: Windows (Alpha)
4+
parent: Install and Configure
5+
nav_order: 6
6+
---
7+
8+
# Windows
9+
10+
Like the [tarball installation](../tar/), we only recommend the Windows installation of Open Distro for Elasticsearch for testing and development purposes. The install package is an alpha, and we only test on Windows 10 and Windows Server 2019.
11+
12+
As an alternative, we recommend [Ubuntu for Windows 10](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6), which you can use to install [Debian packages](../deb/).
13+
{: .tip }
14+
15+
16+
## ZIP install
17+
18+
1. Download [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.3.0.zip).
19+
20+
1. Extract the file to a directory, and open that directory at the command prompt.
21+
22+
1. Run Open Distro for Elasticsearch:
23+
24+
```
25+
.\bin\elasticsearch.bat
26+
```
27+
28+
29+
## EXE install
30+
31+
1. Install Java 11.
32+
33+
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_for_Elasticsearch_windows-x64_1.3.0.exe), run it, and click through the steps.
34+
35+
1. Open the command prompt and navigate to the Open Distro for Elasticsearch install directory:
36+
37+
1. Run Open Distro for Elasticsearch:
38+
39+
```
40+
.\bin\elasticsearch.bat
41+
```
42+
43+
44+
## Verify the install
45+
46+
After you start Open Distro for Elasticsearch, open a second command prompt window. Then send requests to the server to verify that it is up and running:
47+
48+
```
49+
curl -XGET https://localhost:9200 -u admin:admin --insecure
50+
curl -XGET https://localhost:9200/_cat/plugins?v -u admin:admin --insecure
51+
```
52+
53+
You must have [curl](https://curl.haxx.se/windows/) installed for these commands to work. Alternatives include [Invoke-RestMethod](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-restmethod?view=powershell-6) (only PowerShell 6 and later support the `-SkipCertificateCheck` flag) and [Postman](https://www.getpostman.com/downloads/).
54+
55+
56+
## Configuration
57+
58+
You can modify `config\elasticsearch.yml` or specify environment variables as arguments using `-E`:
59+
60+
```
61+
.\bin\elasticsearch.bat -Ecluster.name=odfe-cluster -Enode.name=odfe-node1 -Ehttp.host=0.0.0.0 -Ediscovery.type=single-node
62+
```
63+
64+
For other settings, see [Important settings](../docker/#important-settings).

docs/kibana/index.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,38 @@ You can also modify the values in `/etc/kibana/kibana.yml`.
9696
```
9797

9898

99+
## Run Kibana on Windows (ZIP, alpha)
100+
101+
1. Download the ZIP.
102+
103+
1. Extract [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.3.0-kibana.zip) to a directory and open that directory at the command prompt.
104+
105+
1. If desired, modify `config/kibana.yml`.
106+
107+
1. Run Kibana:
108+
109+
```
110+
.\bin\kibana.bat
111+
```
112+
113+
114+
## Run Kibana on Windows (EXE, alpha)
115+
116+
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_for_Elasticsearch_Kibana_windows-x64_1_3_0.exe), run it, and click through the steps.
117+
118+
1. Open the command prompt.
119+
120+
1. Navigate to the Kibana install directory.
121+
122+
1. If desired, modify `config/kibana.yml`.
123+
124+
1. Run Kibana:
125+
126+
```
127+
.\bin\kibana.bat
128+
```
129+
130+
99131
## Get started with Kibana
100132

101133
1. After starting Kibana, you can access it at port 5601. For example, [http://localhost:5601](http://localhost:5601){:target='\_blank'}

docs/troubleshoot/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ This section contains a list of issues and workarounds.
1616
You might see `[ERROR][c.a.o.s.s.t.OpenDistroSecuritySSLNettyTransport] [odfe-node1] SSL Problem Insufficient buffer remaining for AEAD cipher fragment (2). Needs to be more than tag size (16)` when starting Open Distro for Elasticsearch. This problem is a [known issue with Java](https://bugs.openjdk.java.net/browse/JDK-8221218) and doesn't affect the operation of the cluster.
1717

1818

19+
## Kibana fails to start
20+
21+
If you encounter the error `FATAL Error: Request Timeout after 30000ms` during startup, try running Kibana on a more powerful machine. We recommend four CPU cores and 8 GB of RAM.
22+
23+
24+
## Can't open Kibana on Windows
25+
26+
Kibana doesn't support Microsoft Edge and many versions of Internet Explorer. We recommend using Firefox or Chrome.
27+
28+
1929
## Illegal reflective access operation in logs
2030

2131
This is a [known issue](https://github.com/opendistro-for-elasticsearch/performance-analyzer/issues/21) with Performance Analyzer that shouldn't affect functionality.

0 commit comments

Comments
 (0)