Soy nuevo en Solr y cuando estaba indexando el documento xml en mi solr, recibí este error.SimplePostTool: FATAL: Error de conexión en Solr al intentar indexar
C:\apache-solr-3.2.0\example\exampledocs>java -jar post.jar *.xml
SimplePostTool: version 1.3
SimplePostTool: POSTing files to http://localhost:8983/solr/update..
SimplePostTool: POSTing file gb18030-example.xml
SimplePostTool: FATAL: IOException while posting data: java.net.ConnectException
: Connection refused: connect
entonces me di cuenta de que mi número de puerto en mi caso es 7788 para localhost por lo que hizo esto: -
java -Durl=localhost:7788/solr/update -jar post.jar solr.xml
entonces yo estoy recibiendo este error
C:\apache-solr-3.2.0\example\exampledocs>java -Durl=localhost:7788/solr/update -
jar post.jar *.xml
SimplePostTool: version 1.3
SimplePostTool: FATAL: System Property 'url' is not a valid URL: null
Cualquier sugerencia será ser apreciado ..
Gracias @ Abhishek, este es un error común que solíamos hacer al ejecutar Solr en modo dev. Gracias por señalar! –