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

Commit

Permalink
Add double quotes for Windows commands
Browse files Browse the repository at this point in the history
  • Loading branch information
aetter committed Feb 18, 2021
1 parent 6a246eb commit 6db6437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ Installing Open Distro for Elasticsearch as a Windows service lets it run in the
After you start Open Distro for Elasticsearch, open a new command prompt window. Then send requests to the server to verify that it is up and running:

```
curl -XGET https://localhost:9200 -u admin:admin --insecure
curl -XGET https://localhost:9200/_cat/plugins?v -u admin:admin --insecure
curl -XGET https://localhost:9200 -u "admin:admin" --insecure
curl -XGET https://localhost:9200/_cat/plugins?v -u "admin:admin" --insecure
```

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/).
Expand Down

0 comments on commit 6db6437

Please sign in to comment.