Help. For the past two days I've tried to get Solr to index the exampledocs. I've learned a lot, but am completely stuck. I've tried it on two different Windows 7 PCs.
I'm following the basic tutorial at http://lucene.apache.org/solr/tutorial.html, I tried with Solr 1.4 and 3.1. I can get to the Solr admin page just fine and everything seems to be working at http://localhost:8983/solr/admin/.
Following the next step in tutorial to create sample index with java -jar post.jar *.xml inside Windows CMD screen. The process starts to read the first file (HD.xml) and then throws me the #400_Missing_Solr_Core_Name_in_path error.
I get same error when I try with -Durl=http://localhost:8938/solr/update command.
When I run start.jar, I can see in the resulting msgs:
Warning [] Solr index directory 'solr.\data\index doesn't exist. Creating new index.
I can then see the new data\index subdirectory, but why isn't solr recognizing it when using the post.jar?
I have not changed anything in the solrconfig.xml, which shows: ${solr.data.dir:}
My Solr admin shows this: cwd=C:\Program Files\Solr3\example SolrHome=solr.\
My directory structure is simply:
Solr3\client
solr3\contrib
solr3\dist
solr3\docs
solr3\example
solr3\example\etc
solr3\example\example-DIH
solr3\example\exampledocs
solr3\example\lib
solr3\example\logs
solr3\example\multicore
solr3\example\solr\bin
solr3\example\solr\conf
solr3\example\solr\data
solr3\example\solr\data\index
solr3\example\webapps
solr3\example\work
solr3\example\start.jar
I'm pulling my hair out just following the basic tutorial. Granted I'm using Windows OS, but what am I doing wrong?
Any help would be greatly appreciated.
UPDATE: FINALLY got it to work on a 3rd Win 7 machine. Have no idea what went wrong on the first two... didn't think that the file structure of Solr would be so delicate. I had installed Lucid on the first PC (successfully) to learn and then tried using Solr under Tomcat, (defaults to :8080 instead of standard :8983), which probably buggered things up. Was surprised that I couldn't get basic Solr on Jetty to work on a 2nd clean Win7 PC.