I am new to using solr. I currently have solr running on http://localhost::8983/solr
.
My goal is to index numerous files. I have verified that the core I'm trying to post to exists by listing all cores in solr,I used the method explained here
I also understand that to post to a specific core using SimplePostTool, one must use java -Durl=http://localhost:8983/solr/<corename>/update -jar post.jar <filename>
The issue, however, is that I get the following error.
SimplePostTool version 1.5
Posting files to base url http://localhost:8983/solr/collection1/update using content-type application/xml..
POSTing file tmpzWztTN
SimplePostTool: WARNING: Solr returned an error #404 Not Found
SimplePostTool: WARNING: IOException while reading response: java.io.FileNotFoundException: http://localhost:8983/solr/collection1/update
1 files indexed.
COMMITting Solr index changes to http://localhost:8983/solr/collection1/update..
SimplePostTool: WARNING: Solr returned an error #404 Not Found for url http://localhost:8983/solr/collection1/update?commit=true
Time spent: 0:00:00.023
Since I have verified that the core, collection1
, exists, why does it say the url cannot be found? What am i missing? How does one fix this?