Taymoor Q.
Taymoor Q.

Reputation: 1431

couldn't connect to ElasticSearch inside GetCandy

As am following the documentation in the site here https://getcandy.io/docs/master/guides/introduction/01-installation

but when got to point to set this code:

php artisan candy:search:index

having exception error listed here:

   Elastica\Exception\Connection\HttpException  : Couldn't connect to host, Elasticsearch down?

Upvotes: 0

Views: 635

Answers (1)

GlennJ
GlennJ

Reputation: 167

Sounds most likely that Elasticsearch isn't running properly, rather than an issue with GetCandy.

If you run the following you should be able to determine if Elasticsearch is up.

curl localhost:9200

If you get a response with the Elasticsearch version etc, it is running. If it's not running, you'll need to check the Elasticsearch logs, normally found somewhere like /var/log/elasticsearch/

Upvotes: 1

Related Questions