Couldn't login to Kibana URL

I know it's not the best practice but i want to check something, so i manually created opensearch service at AWS and i can't connect through the kibana url (timeout error) i really don't understand why, my security groups is all.

Can you open Kibana login page at all? Are you using HTTPS and certificates?
What is your server.host value in kibana.yml? Default is server.host: "localhost" which means only from that host will be able to access.
Have you try : curl "your url"?

Hey and thanks for your answer.
i can open kibana page only when i'm running nohup /home/ec2-user/aws-es-proxy-1.3-linux-amd64 -listen 0.0.0.0:41277 -endpoint <my_endpoint>/_plugin/kibana/
but this redirect me through the kibana without the logfin page.
i don't have kibana.yml because i created everything manually.
i tried curl and thats what i get:

<script>var hashRoute = '/_plugin/kibana/app/kibana';
var defaultRoute = '/_plugin/kibana/app/kibana';

var hash = window.location.hash;
if (hash.length) {
  window.location = hashRoute + hash;
} else {
  window.location = defaultRoute;
}</script>

But in both cases when i'm clicking on kibana url at opensearch i just got runtime error

You will need to ask aws about opensearch, it's a hard fork of Elasticsearch and we are unable to help with that sorry.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.