Replies: 1 comment 3 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to follow along with this tutorial to create a QA system. I have Docker downloaded to my machine and am using a Jupyter notebook. Whenever I try to start elasticsearch using the recommended Haystack utility function, I get an error that it failed.
WARNING - haystack.utils.doc_store - Tried to start Elasticsearch through Docker but this failed. It is likely that there is already an existing Elasticsearch instance running.
The line I am trying to run:
launch_es()
I am able to start a Docker image for elasticsearch just fine using:
!docker pull docker.elastic.co/elasticsearch/elasticsearch:7.9.2
!docker run -d -p 9200:9200 -e "discovery.type=single-node" elasticsearch:7.9.2
I should also add that I've also confirmed there are no instances running in Docker Desktop.
Beta Was this translation helpful? Give feedback.
All reactions