0

我对 Solr 的架构验证有问题,显示 500 错误。

SimplePostTool: version 1.4
SimplePostTool: POSTing files to http://localhost:8081/solr-project/update..
SimplePostTool: POSTing file sample-solr.xml
SimplePostTool: FATAL: Solr returned an error #500 Error Interno del Servidor

Solr的 schema.xml 的字段是这样的:

 <field>
   <field name="id" type="string" indexed="true" stored="true" required="true" />
   <field name="url" type="string" stored="true"/>
   <field name="content" type="text_es" indexed="true" stored="true" />
 </field>
 <uniqueKey>id</uniqueKey>

无需遵循等于 schema.xml 的顺序,id是字段required

示例-solr.xml

<?xml version="1.0"?>
    <add>
      <doc>
       <field name="id">id product</field>
       <field name="url">http://www.web.com/content/direct/index.html</field>
       <field name="content">field content text</field> 
     </doc>
    </add>

编译项目并通过测试执行:

~/opt/solr/solr/example/exampledocs$ java -jar -Durl=http://localhost:8081/solr-project/update post.jar sample-solr.xml

可以是什么?谢谢!。

4

1 回答 1

1

如果这是 Solr 4+,请查看您启动 Solr 的控制台或日志屏幕下的 Admin Web UI。真正的消息在服务器端,会告诉你问题出在哪里。

于 2013-02-13T13:51:24.020 回答