收到错误:
使用 ' : '查询 Solr失败:无法连接到位于 的服务器
'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'
,您确定 URL 正确吗?在浏览器中检查它可能会有所帮助: HTTPConnectionPool(host='127.0.0.1', port=8000): Max retries exceeded with url: /solr/select/?fq=django_ct%3A%28jobpost.jobpost%29&rows=1&q=% 2A%3A%2A&start=0&wt=json&fl=%2A+score (原因:[Errno 111] 连接被拒绝)
这是我的干草堆连接:
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
'URL': 'http://127.0.0.1:8000/solr'
},
}
谁能告诉我我的代码有什么问题?