On Jun 5, 2008, at 2:10 PM, Alexander Ramos Jardim wrote:
It is not happening. I can't even access solr via web browser when using
multicore.

Compare your configuration/version with Solr's trunk multicore support. Here's what I did:

$ cd dev/solr
$ svn up # or svn co https://svn.apache.org/repos/asf/lucene/solr/trunk solr; cd solr
$ ant clean example
$ cd example
java -Dsolr.solr.home=multicore/ -jar start.jar

$ curl http://localhost:8983/solr/core0/update --data-binary '<commit/ >' -H 'Content-type:text/xml; charset=utf-8'
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader"><int name="status">0</int><int name="QTime">24</int></lst><str name="WARNING">This response format is experimental. It is likely to change in the future.</str>

$ curl http://localhost:8983/solr/core1/update --data-binary '<commit/ >' -H 'Content-type:text/xml; charset=utf-8'
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader"><int name="status">0</int><int name="QTime">5</int></lst><str name="WARNING">This response format is experimental. It is likely to change in the future.</str>
</response>


I hate the "works for me" answer too, but maybe a working example in one environment will shed light on the issue in another.

        Erik

Reply via email to