我是Solr的新手,當我在索引中索引xml文檔時,出現此錯誤。SimplePostTool:FATAL:嘗試索引時Solr中的連接錯誤
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
後來我意識到,在我的情況,我的端口號爲7788的本地主機,所以我這樣做: -
java -Durl=localhost:7788/solr/update -jar post.jar solr.xml
然後我收到此錯誤
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
任何建議將被讚賞..
感謝@ Abhishek,這是我們在dev模式下運行solr時常犯的一個常見錯誤。感謝您指出! –