Hi All Because of my particular development environment, I want to set up solr in such a way that
1) The shared lib have to be relocated to another path : This location must be read from an environment variable. I am using solr multi-core and in the solr.xml I tried to specify the shared lib folder to a seperate directory. But it is not taking the environment variable. Even if I give a absolute path, it is trying to append the absolute path to the current working directory. <solr persistent="true" sharedLib="%COMMON_LIB%"> this is not working <solr persistent="true" sharedLib="C:\lib"> this also is not working 2) The data dir must be in a different path : The location must be read from another environment variable To specify the data directory, i updated the solrconfig.xml and set, <dataDir>${solr.data.dir:C:\search\data\employees}</dataDir> this is working but I want to replace this with an environment variable, like: <dataDir>${solr.data.dir:"%SOLR_DATA%"}</dataDir> How is it possible in solr 1.3 Thanks con -- View this message in context: http://www.nabble.com/Custom-path-for-solr-lib-and-data-folder-tp22450530p22450530.html Sent from the Solr - User mailing list archive at Nabble.com.