Hi Stefan, This my solr.xml:
<solr persistent="true" sharedLib="lib"> <property name="snapshooter" value="/home/solr-user/solr/bin/snapshooter.sh" /> <cores adminPath="/admin/cores" shareSchema="false"> <core name="core1" instanceDir="core1"/> <core name="core2" instanceDir="core2"/> </cores> </solr>. And when I visit the solr Admin Interface (http://0.0.0.0:8983/solr/admin/) I have this message: HTTP ERROR: 404 missing core name in path RequestURI=/solr/admin/index.jsp * Amel. * 2011/4/1 Stefan Matheis <matheis.ste...@googlemail.com> > Amel, > > how does your solr.xml look like? and if you visit the > Solr-Admin-Interface, are there Links for (at least) two cores listed? > > Regards > STefan > > On Fri, Apr 1, 2011 at 10:41 AM, Amel Fraisse <amel.frai...@gmail.com> > wrote: > > Hello every body, > > > > I tried to run this code: > > > > File f = new File ("./solr/solr.xml"); > > > > System.setProperty("solr.solr.home", "solr"); > > > > CoreContainer.Initializer initializer = new > > CoreContainer.Initializer(); > > CoreContainer coreContainer = initializer.initialize(); > > > > coreContainer.load("./solr/solr.xml", f); > > > > servercore1 = new EmbeddedSolrServer(coreContainer, "core1"); > > servercore2 = new EmbeddedSolrServer(coreContainer, "core2"); > > > > > > org.apache.solr.common.SolrException: No such core: core1 > > at > > > org.apache.solr.client.solrj.embedded.EmbeddedSolrServer.request(EmbeddedSolrServer.java:104) > > at > > > org.apache.solr.client.solrj.request.AbstractUpdateRequest.process(AbstractUpdateRequest.java:105) > > at > > > org.apache.solr.client.solrj.SolrServer.deleteByQuery(SolrServer.java:110) > > at > fr.splayce.solr.handler.SolrCoreTest.deleteAll(SolrCoreTest.java:61) > > at > > > fr.splayce.test.solr.core.highlighting.SolrCorePassageValideHighlighter.setup(SolrCorePassageValideHighlighter.java:31) > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at > > > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > > at > > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:597) > > at > > > org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) > > at > > > org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) > > at > > > org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) > > at > > > org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) > > at > > > org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79) > > at > > > org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71) > > at > > > org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49) > > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193) > > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52) > > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191) > > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42) > > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184) > > at org.junit.runners.ParentRunner.run(ParentRunner.java:236) > > at > > > org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46) > > at > > > org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) > > at > > > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) > > at > > > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) > > at > > > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > > at > > > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > > > > > > Some one could help me to resolve this problem? > > > > Thank you very much. > > > > Amel. > > >