I am setting up solr on eclipse and tomcat as specified here. I am using solr 3.5.0 and eclipse Indigo on a debian. When I run solr through eclipse, I am able to reach the home page. But the admin console won’t work and throws a 404 page stating “Missing core name in path”.
What am I missing? Any help would be greatly appreciated!
Looks like you’re working with a multicore configuration, thus your admin page url is not just:
http://localhost:8080/solr/adminbut it has to contain the core name like thishttp://localhost:8080/solr/${core}/admin. Please replace${core}with your core name.Otherwise you can go to the url
http://localhost:8080/solrand you should see a list of the available cores, where you can click on a specific core and go directly to its admin page.