Installed Banana and now the Solr HTTP api stopped working

120 views Asked by At

Im very new to Solr (4.10) and Banana. Here is my issue:

  • I setup suggestions with multiple dictionaries in the solrconfig.xml file and got them working great in Solr 4.10!
  • I use a query like this query to get them: http://0.0.0.0:8983/solr/coll1/suggest?suggest=true&suggest.dictionary=store_primary&suggest.dictionary=stores_assoc&&suggest.dictionary=store_all&wt=json&suggest.q=foobar&suggest.build=true
  • then I installed banana and it works well but...
  • that query above now returns HTTP ERROR 404, Problem accessing /solr/coll1/suggest. Reason: Not Found
  • I did make sure to create a new non-time series dash and that is where the http errors below occur

Here is the full error message:

HTTP ERROR 404
Problem accessing /solr/coll1/suggest. Reason:
Not Found

I also tried with the default collection1 with sample data:

HTTP ERROR 404
Problem accessing /solr/collection1/select. Reason:
Not Found

Why can I no longer query the Solr instance behind the banana install? What am I missing? I made sure to populate coll1 with some sample data as well

1

There are 1 answers

0
Coldstar On BEST ANSWER

I ended up dropping banana in the apache-tomcat-9.0.27/webapps/ folder instead of inside the Solr webapps directory as described here (https://github.com/lucidworks/banana) and it works now