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
Copy file name to clipboardExpand all lines: _getting-started/quickstart.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ You should get a response that looks like this:
67
67
68
68
## Option 2: Set up a custom Docker cluster
69
69
70
-
Use Docker Compose to run a local multi-node OpenSearch and OpenSearch Dashboards cluster:
70
+
Use [Docker Compose](https://docs.docker.com/compose/) to run a local multi-node OpenSearch and OpenSearch Dashboards cluster:
71
71
72
72
-[Set up a cluster without security](#set-up-a-cluster-without-security-for-local-development) -- Best for local development.
73
73
-[Set up a cluster with security](#set-up-a-cluster-with-security-recommended-for-most-use-cases) -- Try OpenSearch with security by installing it with default certificates.
@@ -107,7 +107,7 @@ This configuration disables security and should only be used in test environment
107
107
1. To verify that OpenSearch is running, send the following request:
108
108
109
109
```bash
110
-
curl https://localhost:9200
110
+
curl http://localhost:9200
111
111
```
112
112
{% include copy.html %}
113
113
@@ -212,14 +212,6 @@ Eliminate the need for running your Docker commands with `sudo` by adding your u
212
212
sudo usermod -aG docker $USER
213
213
```
214
214
215
-
### Error message: "-bash: docker-compose: command not found"
216
-
217
-
If you installed Docker Desktop, then Docker Compose is already installed on your machine. Try `docker compose` (without the hyphen) instead of `docker-compose`. See [Use Docker Compose](https://docs.docker.com/get-started/08_using_compose/).
218
-
219
-
### Error message: "docker: 'compose' is not a docker command."
220
-
221
-
If you installed Docker Engine, then you must install Docker Compose separately, and you will use the command`docker-compose` (with a hyphen). See [Docker Compose](https://github.com/docker/compose).
222
-
223
215
### Error message: "max virtual memory areas vm.max_map_count [65530] is too low"
224
216
225
217
OpenSearch will fail to start if your host's `vm.max_map_count` is too low. Review the [important system settings]({{site.url}}{{site.baseurl}}/opensearch/install/important-settings/) if you see the following errors in the service log, and set `vm.max_map_count` appropriately.
0 commit comments