janhoy opened a new pull request #558:
URL: https://github.com/apache/solr/pull/558


   https://issues.apache.org/jira/browse/SOLR-9575
   
   In 8.x this would fail, as you'd  have to pre-initialize your new solr-home 
with both `solr.xml` and `zoo.cfg`:
   ```bash
   export SOLR_HOME=/tmp/solrhome && mkdir /tmp/solrhome && bin/solr start -c
   ```
   
   This PR will make Solr accept an empty dir, falling back to the defaults of 
both files as found in `$SOLR_TIP/server/solr/`. Nothing will be copied into 
the empty dir, we'll simply pull defaults from the install-dir. If user wants 
to customize they can place the files in `SOLR_HOME` and they will be used as 
before. To test, check out the PR branch, then:
   
   ```bash
   export SOLR_HOME=/tmp/solrhome
   mkdir /tmp/solrhome
   bin/solr start -c
   grep -E "built-in default|solr.xml|zoo.cfg" server/logs/solr.log 
   # [...] SolrXmlConfig Container configuration not found in solr solrhome, 
using built-in default
   # [...] SolrXmlConfig Loading container configuration from 
[...]server/solr/solr.xml
   # [...] SolrZkServer Zookeeper configuration not found in /tmp/solrhome, 
using built-in default
   # [...] SolrZkServerProps Reading configuration from: 
[...]server/solr/zoo.cfg
   bin/solr stop
   ```
   
   Then try out the back-compat override var:
   
   ```bash
   SOLR_SOLRXML_REQUIRED=true bin/solr start -f 
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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

Reply via email to