[ 
https://issues.apache.org/jira/browse/SOLR-16327?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17576286#comment-17576286
 ] 

Shawn Heisey edited comment on SOLR-16327 at 8/6/22 9:54 PM:
-------------------------------------------------------------

Solr 8.11.1 works correctly.  The stated error is "Ping query caused exception: 
no field name specified in query and no default specified via 'df' param"

Here is the ping handler definition that caused the exception.  The lines I 
added to fix the problem on this particular core are commented out here.
{code:xml}
  <requestHandler name="/admin/ping" class="solr.PingRequestHandler">
    <!-- relative paths are resolved against the data dir -->
    <str name="healthcheckFile">server-enabled.txt</str>
    <lst name="invariants">
      <str name="qt">/select</str><!-- handler to delegate to -->
<!--
      <str name="defType">edismax</str>
      <str name="qf">body to subject cc from</str>
-->
      <str name="q">mail</str>
      <str name="rows">1</str>
    </lst>
  </requestHandler>
{code}
I had removed the config usually present in examples that would add a df field 
to /select.

 


was (Author: elyograg):
I haven't yet done any testing on a real release, just the compiled version I 
am running.  Here is the ping handler definition that caused the exception.  
The lines I added to fix the problem are commented out here.
{code:xml}
  <requestHandler name="/admin/ping" class="solr.PingRequestHandler">
    <!-- relative paths are resolved against the data dir -->
    <str name="healthcheckFile">server-enabled.txt</str>
    <lst name="invariants">
      <str name="qt">/select</str><!-- handler to delegate to -->
<!--
      <str name="defType">edismax</str>
      <str name="qf">body to subject cc from</str>
-->
      <str name="q">mail</str>
      <str name="rows">1</str>
    </lst>
  </requestHandler>
{code}
 

> Admin UI reports permission error if the request it made results in ANY 
> exception
> ---------------------------------------------------------------------------------
>
>                 Key: SOLR-16327
>                 URL: https://issues.apache.org/jira/browse/SOLR-16327
>             Project: Solr
>          Issue Type: Bug
>      Security Level: Public(Default Security Level. Issues are Public) 
>          Components: Admin UI
>            Reporter: Shawn Heisey
>            Priority: Minor
>         Attachments: image-2022-08-06-15-36-24-158.png, 
> solr9_ping_exception.txt
>
>
> A lot of the pages in the UI report permission errors even when the actual 
> problem is some other exception.  For this screenshot, I clicked first on the 
> Overview, and then on Ping ... there was a misconfig in the ping handler 
> where it was not declaring a default field, so the query generated an 
> exception which is attached to the issue.  I did not have a security.json 
> file.
> !image-2022-08-06-15-36-24-158.png|width=389,height=182!
> I also saw this on other things besides Ping when I was clicking around the 
> admin UI during a solr service restart.  The version info showing where the 
> git repo was when I compiled from branch_9x:
> 9.1.0-SNAPSHOT f1510b1f54ea9225df654e3aad0ca7da856c1f72 [snapshot build, 
> details omitted]
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to