mirror of https://github.com/apache/lucene.git
SOLR-9047: zkcli should allow alternative locations for log4j configuration
This commit is contained in:
parent
7ed472fb52
commit
0dec8f9415
|
@ -224,6 +224,8 @@ Other Changes
|
||||||
|
|
||||||
* SOLR-9037: Replace multiple "/replication" strings with one static constant. (Christine Poerschke)
|
* SOLR-9037: Replace multiple "/replication" strings with one static constant. (Christine Poerschke)
|
||||||
|
|
||||||
|
* SOLR-9047: zkcli should allow alternative locations for log4j configuration (Gregory Chanan)
|
||||||
|
|
||||||
================== 6.0.0 ==================
|
================== 6.0.0 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||||
|
|
|
@ -9,4 +9,10 @@ REM Find location of this script
|
||||||
set SDIR=%~dp0
|
set SDIR=%~dp0
|
||||||
if "%SDIR:~-1%"=="\" set SDIR=%SDIR:~0,-1%
|
if "%SDIR:~-1%"=="\" set SDIR=%SDIR:~0,-1%
|
||||||
|
|
||||||
"%JVM%" -Dlog4j.configuration="file:%SDIR%\log4j.properties" -classpath "%SDIR%\..\..\solr-webapp\webapp\WEB-INF\lib\*;%SDIR%\..\..\lib\ext\*" org.apache.solr.cloud.ZkCLI %*
|
if defined LOG4J_PROPS (
|
||||||
|
set "LOG4J_CONFIG=file:%LOG4J_PROPS%"
|
||||||
|
) else (
|
||||||
|
set "LOG4J_CONFIG=file:%SDIR%\log4j.properties"
|
||||||
|
)
|
||||||
|
|
||||||
|
"%JVM%" -Dlog4j.configuration="%LOG4J_PROPS%" -classpath "%SDIR%\..\..\solr-webapp\webapp\WEB-INF\lib\*;%SDIR%\..\..\lib\ext\*" org.apache.solr.cloud.ZkCLI %*
|
||||||
|
|
|
@ -9,5 +9,11 @@ JVM="java"
|
||||||
|
|
||||||
sdir="`dirname \"$0\"`"
|
sdir="`dirname \"$0\"`"
|
||||||
|
|
||||||
PATH=$JAVA_HOME/bin:$PATH $JVM -Dlog4j.configuration=file:$sdir/log4j.properties -classpath "$sdir/../../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../../lib/ext/*" org.apache.solr.cloud.ZkCLI ${1+"$@"}
|
if [ -n "$LOG4J_PROPS" ]; then
|
||||||
|
log4j_config="file:$LOG4J_PROPS"
|
||||||
|
else
|
||||||
|
log4j_config="file:$sdir/log4j.properties"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PATH=$JAVA_HOME/bin:$PATH $JVM -Dlog4j.configuration=$log4j_config -classpath "$sdir/../../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../../lib/ext/*" org.apache.solr.cloud.ZkCLI ${1+"$@"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue