I'm trying to set up an instance of solr server 9.0.3 on a single machine. I hjave it up and running, and I'm trying to create a core using the command line interface. The command fails, though:
$ sudo -u solr ./solr create_core -c mcr-9 -d /tmp/mcr ERROR: Error from server at http://localhost:8983/solr/admin/cores?action=CREATE&name=mcr-9&instanceDir= mcr-9&wt=javabin&version=2: Error CREATEing SolrCore 'mcr-9': Unable to create core [mcr-9] Caused by: solr.scripting.xslt.XSLTResponseWriter That class is described in the solrconfig.xml file that's in my data directory. Here's the definition: <queryResponseWriter name="xslt" class="solr.scripting.xslt.XSLTResponseWriter"> <int name="xsltCacheLifetimeSeconds">5</int> </queryResponseWriter> Can someone help me understand what failed here? Did I miss something in my server configuration? Thanks, Scott