From 610334f9ebd9a87fd581fbd4ae840a0aed49101f Mon Sep 17 00:00:00 2001 From: ashwinkumar12345 Date: Tue, 2 Nov 2021 12:57:04 -0700 Subject: [PATCH] incorporated feedback --- _opensearch/install/ansible.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_opensearch/install/ansible.md b/_opensearch/install/ansible.md index 3302454a..47a91a8d 100644 --- a/_opensearch/install/ansible.md +++ b/_opensearch/install/ansible.md @@ -55,8 +55,12 @@ Make sure you have direct SSH access into the root user of the target node. You can set the passwords for reserved users (`admin` and `kibanaserver`) using the `admin_password` and `kibanaserver_password` variables. -2. After the deployment process is complete, you can access OpenSearch and OpenSearch Dashboards with the username `admin` and the password that you set for the `admin_password` variable: +2. After the deployment process is complete, you can access OpenSearch and OpenSearch Dashboards with the username `admin` and the password that you set for the `admin_password` variable. + + If you bind `ip` to a private IP or localhost, make sure you're logged into the server that deployed the playbook to access OpenSearch and OpenSearch Dashboards: ```bash curl https://localhost:9200 -u 'admin:Test@123' --insecure ``` + + If you bind `ip` to 0.0.0.0, then replace `localhost` with the public IP or the private IP (if it's in the same network).