skip to Main Content

I have installed solr 9.0.0 on Apache2 Ubuntu 18.04 vagrant box. after the solr installation on my drupal site the solr page looks as below:

enter image description here

But when trying to open the solr url on browser – http://192.168.33.93:8983/solr/#/solr_core I see the below error:

enter image description here

Also tried http://localhost:8983/solr/#/solr_core produces the same error. Further, upon clicking the "Get condig.zip" button I see this error – Drupalsearch_api_solrSearchApiSolrException: No config-set template found for Solr branch 9.x in Drupalsearch_api_solrControllerSolrConfigSetController->getConfigFiles() (line 285 of /vagrant/web/modules/contrib/search_api_solr/src/Controller/SolrConfigSetController.php).

Any help on how the issue can be resolved?

2

Answers


  1. Chosen as BEST ANSWER

    I am able to figure out the problem. I was trying to install Solr 9 on Drupal 9.x which is not a possible thing. Drupal 9.x supported until solr 8. There was a config mismatch due to that. So I had to role back to solr 8 and re-upload correct configs, re-index my contents and everything worked correctly.


  2. I’ve experienced a similar issue with Solr 9 service started but no webpage, seems by default it binds to IPV6. Disable ipv6 and edit the below adding the actual ip address.

    "Solr now binds to localhost network interface by default for better out of the box security. Administrators that need Solr exposed more broadly can change the SOLR_JETTY_HOST property in their Solr include (solr.in.sh/solr.in.cmd) file."

    if you installed as a service edit: /etc/default/solr.in.sh

    standalone: solr-9.0.0/bin/solr.in.sh

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search