On 8/6/2013 6:17 AM, Dmitry Kan wrote: > Of three URLs you asked for, only the 3rd one gave response: <snip> > The rest report 404. > > On Mon, Aug 5, 2013 at 8:38 PM, Roman Chyla <roman.ch...@gmail.com> wrote: > >> Hi Dmitry, >> So I think the admin pages are different on your version of solr, what do >> you see when you request... ? >> >> http://localhost:8983/solr/admin/system?wt=json >> http://localhost:8983/solr/admin/mbeans?wt=json >> http://localhost:8983/solr/admin/cores?wt=json
Unless you have a valid defaultCoreName set in your (old-style) solr.xml, the first two URLs won't work, as you've discovered. Without that valid defaultCoreName (or if you wanted info from a different core), you'd need to add a core name to the URL for them to work. The third one, which works for you, is a global handler for manipulating cores, so naturally it doesn't need a core name to function. The URL path for this handler is defined by solr.xml. Thanks, Shawn