Based on the error, I assume that the request defined in the / admin / ping requestHandler request searches in a field called text that you did not specify in your schema.
Here is a typical ping requestHandler section
<requestHandler name="/admin/ping" class="solr.PingRequestHandler"> <lst name="invariants"> <str name="q">solrpingquery</str> </lst> <lst name="defaults"> <str name="qt">standard</str> <str name="echoParams">all</str> <str name="df">text</str> </lst> </requestHandler>
Note the setting <str name="df">text<str> . This is the default field in which ping will search. You should change this to a field that is defined in your schema, perhaps a title or description based on your schema.
source share