Skip to content

Instantly share code, notes, and snippets.

View shiloh00's full-sized avatar

Can Wang shiloh00

  • UIUC, Northwestern U
  • IL
View GitHub Profile
@rnjailamba
rnjailamba / solr.txt
Last active June 14, 2023 16:51
Remove managed-schema and get schema.xml in SOLR core [ Version 5.5.0 ]
Lets say solr is located at /usr/local/solr-5.5.0 .
1. bin/solr start
2. bin/solr create -c test
3. location of new core is here /usr/local/solr-5.5.0/server/solr/test
4. location of solrconfig is here /usr/local/solr-5.5.0/server/solr/test/solrconfig.xml
5. Open solrconfig.xml -
You will find this
<schemaFactory class="ManagedIndexSchemaFactory">
<bool name="mutable">true</bool>
<str name="managedSchemaResourceName">managed-schema</str>