Murali Krishnamraju
Murali Krishnamraju

Reputation: 108

Connecting Local Kibana to remote aws elastic search end point?

I have elastic search endpoint link I configured that in kibana.yml file by changing the elastic search url field but it is not able to establish a connection with aws end point

This is the log I am getting in kibana

log [06:17:02.754] [warning][admin][elasticsearch] Unable to revive connection: https://search-xxxxxxxxxxx.us-east-1.es.amazonaws.com:80/

Upvotes: 2

Views: 1687

Answers (2)

Banjo Obayomi
Banjo Obayomi

Reputation: 1690

Try kibana docker, also try 9200 for the port if 80 doesn't work

docker run -p 5601:5601 -d -e "XPACK_SECURITY_ENABLED=false"  -e "ELASTICSEARCH_URL=YOUR_ELASTICSEARCH:9200" --add-host elasticsearch:YOUR_ELASTICSEARCH docker.elastic.co/kibana/kibana:6.4.2

Upvotes: 1

ben5556
ben5556

Reputation: 3018

The endpoint url doesn't look right. Can you try https://search-xxxxxxxxxxx.us-east-1.es.amazonaws.com instead ? As HTTPS is port 443, appending :80 to the url is invalid.

Also, ensure your Elasticsearch domain access policy allows connections from your network.

Upvotes: 0

Related Questions