Skip to content
Adam Wead edited this page Mar 14, 2016 · 3 revisions

All of the files required for configuring solr are in the repo under solr/config. This files need to be used to create cores for the solr server.

For a new installation, you can use Solr's own commands to create the new cores. Note: Solr must be running.

sudo -u rbrun bash
HYDRA_PATH=/usr/local/hydra
export HYDRA_PATH
PATH=$HYDRA_PATH/java/bin:$HYDRA_PATH/solr/current/bin:$PATH
export PATH
solr create_core -c aic_development -d /usr/local/hydra/lakeshore/current/solr/config
solr create_core -c aic_production -d /usr/local/hydra/lakeshore/current/solr/config
Clone this wiki locally