: 1. I use the following URL to successfully browse to the Admin interface of
: one of the cores:
: 
: http://devbox:8080/solr/solrtest/admin/
: 
: 2. On the resulting page, I click on the link [SCHEMA]
: 
: 3. This results in a 404 error. The link to this page is
: http://devbox:8080/solr/solrtest/admin/file/?file=schema.xml

Hmmm... i'm guessing you are using solightly older solrconfig.xml files 
(possibly configs that worked for you in Solr 1.2) and that they do not 
contain a <requestHandler name="/admin/"/> or <requestHandler 
name="/admin/file"/> declaration ... correct?

This isn't specific to multicore ... 

http://issues.apache.org/jira/browse/SOLR-493

: Can someone please advise me how to fix the issue?

the easy workarround is to add this to your solrconfig.xml...

  <requestHandler name="/admin/" 
class="org.apache.solr.handler.admin.AdminHandlers" />

...it adds handlers for all sorts of cool URLs under the hood (see the 
example solrconfig.xml for more info)


-Hoss

Reply via email to