2011-06-23 152 views
5

我是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 

任何建議將被讚賞..

回答

3

對於我來說,這是怎麼回事,因爲我試圖加載數據時未能啓動Solr(在後臺運行)...... DUH!

2

只是檢查你的Solr服務器已啓動或不..

如果是沒有運行然後運行Solr的服務器..

,並在其他

cmd run this C:\apache-solr-3.2.0\example\exampledocs>java -jar post.jar *.xml

+0

感謝@ Abhishek,這是我們在dev模式下運行solr時常犯的一個常見錯誤。感謝您指出! –

相關問題