django - failed to query solr using '*:*' -


getting error :

failed query solr using ':': failed connect server @ 'http://127.0.0.1:8000/solr/select/?fq=django_ct%3a%28jobpost.jobpost%29&rows=1&q=%2a%3a%2a&start=0&wt=json&fl=%2a+score', sure url correct? checking in browser might help: httpconnectionpool(host='127.0.0.1', port=8000): max retries exceeded url: /solr/select/?fq=django_ct%3a%28jobpost.jobpost%29&rows=1&q=%2a%3a%2a&start=0&wt=json&fl=%2a+score (caused : [errno 111] connection refused)

this haystack connection:

haystack_connections = {     'default': {         'engine': 'haystack.backends.solr_backend.solrengine',         'url': 'http://127.0.0.1:8000/solr'     }, } 

can tell me what's problem code?

may solr running on apache tomcat uses port 8080 can try 127.0.0.1:8080/solr or can check on port apache tomcat running


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -