Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by NoblePaul: http://wiki.apache.org/solr/SolrTomcat ------------------------------------------------------------------------------ <Environment name="solr/home" type="java.lang.String" value="/my/solr/home" override="true" /> </Context> }}} + + ==== Setting Solr Home from web.xml of solr web app ==== + Unzip the solr war into Tomcat webapp folder and add the following snippet into web.xml + {{{ + <env-entry> + <env-entry-name>solr/home</env-entry-name> + <env-entry-type>java.lang.String</env-entry-type> + <env-entry-value>/put/your/solr/home/here</env-entry-value> + </env-entry> + }}} + A few things to keep in mind: * The "conf/Catalina/localhost" directory may not exist by default in your installation. You may have to create it.
