When I navigate to the DataImport page I get this error
Status 404 Not Found
Version HTTP/1.1
Transferred 465 B (219 B size)
Referrer Policy strict-origin-when-cross-origin
the address in the debugger is
https://xxxxxxx.org/solr/mbepp/update%2Ftei?_=1636324054429&command=show-config
The %2F between update and tei looks suspicious! 2F is the ASCII number for
the /, but why is it the only slash not uriencoded?
I have attached a screenshot
file:///home/scott/Desktop/Screenshot%20at%202021-11-07%2014-35-48.png
If I press the Execute button I get another 404 message in the debug window and
a thick red bar at the top of the solr web page, no additional message about
what is wrong.
thanks,
Scott
On 11/4/21 9:19 AM, Timothy Potter wrote:
Please use your browser's debug console to capture the request the UI
is sending ...
On Thu, Nov 4, 2021 at 9:45 AM Scott Derrick <[email protected]> wrote:
If I send the following command using curl the data import works as expected
curl
'http://localhost:8983/solr/mbepp/update/tei?command=full-import&clean=true&commit=true'
If I go to my solr service website, select a core, go to the dataimport page
and press execute, the import fails immediately with the message
"The solrconfig.xml file for this index does not have an operational
DataImportHandler defined!"
In the solrconfig.xml file
<!-- for mbepp data import -->
<lib dir="${solr.install.dir:../../../..}/dist/"
regex="solr-dataimporthandler-.*\.jar" />
in the folder referenced in the config file
-rw-r--r-- 1 root root 228579 May 28 2019 solr-dataimporthandler-7.7.2.jar
-rw-r--r-- 1 root root 40568 May 28 2019
solr-dataimporthandler-extras-7.7.2.jar
I don't understand why the update works using the httpd interface but not the
web interface?
thanks,
Scott