I'm working with Elasticsearch and Neo4j, I'm currently attempting to get the instances to simply talk to each other. I'm using the command:
call apoc.es.stats("localhost:9205")
to connect to the locally exposed Elasticsearch index. This is the error message I receive back:
Failed to invoke procedure `apoc.es.stats`:
Caused by: java.lang.RuntimeException:
Can't read url or key http://localhost:9205/_stats as json:
Connection refused: connect
The ES index is accessible on local host without a password and returns a json response to curl and other queries. Has anyone else run into this issue?