Ensure a healthy Elasticsearch cluster is running at https://172.19.0.2:9200 for user elastic

Ensure a healthy Elasticsearch cluster is running at https://172.19.0.2:9200 for user elastic.

When I run docker of enterprise-search,
it fails to run with this message when I entered on Kibana
http://kibana-url:5601/app/enterprise_search/overview

it is working with Elasticsearch and enterprise-search together? or not?

[2022-03-08T16:47:50.434+00:00][8][2000][app-server][ERROR]: Could not connect to Elasticsearch backend after 600 seconds. Terminating...
[2022-03-08T16:47:50.437+00:00][8][2000][app-server][ERROR]:

Enterprise Search is unable to connect to Elasticsearch. Ensure a healthy Elasticsearch cluster is running at https://172.19.0.2:9200 for user elastic.


Hey @suminlim,

It seems that Enterprise Search isn't able to access Elasticsearch using the host/username/password specified. You could try to SSH into the Enterprise Search docker container and attempt to issue a basic request to Elasticsearch in order to test/verify the connection. Something like:

curl -u [USERNAME]:[PASSWORD] https://[HOST AND PORT]/_cat/health

Let me know if that helps!

Ross