Hi,
I am
attempting to use the example-DIH that comes with the Solr 4.0 download. In
/example, I start Solr using:
java -Dsolr.solr.home="./example-DIH/solr/" -jar
start.jar
After playing with it for a while, I decided to delete all
documents in the index. The FAQ at
http://wiki.apache.org/solr/FAQ#How_can_I_delete_all_documents_from_my_index.3F
seems to say that I needed to use:
http://localhost:8983/solr/update?stream.body=<delete><query>*:*</query></delete>
http://localhost:8983/solr/update?stream.body=<commit/>
I put the above urls in my browser, but I simply get 404’s. I
then tried:
http://localhost:8983/solr/update
and I got a 404 too. I then looked at
/example-DIH/solr/solr/conf/solrconfig.xml and it seems to have <requestHandler
name="/update" class="solr.UpdateRequestHandler" />.
I am confused why I am getting a 404 if /update has a
handler?
Thank you for any ideas.
O. O.