From b7afdc3a8473ce3a6944335c0ca69ab528dcfa51 Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Mon, 18 Dec 2023 13:54:27 -0500 Subject: [PATCH] Remove reference to default credentials Signed-off-by: Derek Ho --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19afe2c..89104ac 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ To install the SQL CLI: 1. To launch the CLI, run: ``` - opensearchsql https://localhost:9200 --username admin --password admin + opensearchsql https://localhost:9200 --username admin --password < Admin password > ``` By default, the `opensearchsql` command connects to [http://localhost:9200](http://localhost:9200/). @@ -107,7 +107,7 @@ For a list of all available configurations, see [clirc](https://github.com/opens 2. Index the sample data. ``` - curl -H "Content-Type: application/x-ndjson" -POST https://localhost:9200/data/_bulk -u admin:admin --insecure --data-binary "@accounts.json" + curl -H "Content-Type: application/x-ndjson" -POST https://localhost:9200/data/_bulk -u admin:< Admin password > --insecure --data-binary "@accounts.json" ```