29 lines
1.1 KiB
Bash
Executable File
29 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# You can override pass the following parameters to this script:
|
|
#
|
|
|
|
JVM="java"
|
|
|
|
# Find location of this script
|
|
|
|
sdir="`dirname \"$0\"`"
|
|
|
|
log4j_config="file:$sdir/../../resources/log4j2-console.xml"
|
|
|
|
solr_home="$sdir/../../solr"
|
|
|
|
# Settings for ZK ACL
|
|
#SOLR_ZK_CREDS_AND_ACLS="-DzkACLProvider=org.apache.solr.common.cloud.DigestZkACLProvider \
|
|
# -DzkCredentialsProvider=org.apache.solr.common.cloud.DigestZkCredentialsProvider \
|
|
# -DzkCredentialsInjector=org.apache.solr.common.cloud.VMParamsZkCredentialsInjector \
|
|
# -DzkDigestUsername=admin-user -DzkDigestPassword=CHANGEME-ADMIN-PASSWORD \
|
|
# -DzkDigestReadonlyUsername=readonly-user -DzkDigestReadonlyPassword=CHANGEME-READONLY-PASSWORD"
|
|
# optionally, you can use using a a Java properties file 'zkDigestCredentialsFile'
|
|
#...
|
|
# -DzkDigestCredentialsFile=/path/to/zkDigestCredentialsFile.properties
|
|
#...
|
|
PATH=$JAVA_HOME/bin:$PATH $JVM $SOLR_ZK_CREDS_AND_ACLS $ZKCLI_JVM_FLAGS -Dlog4j.configurationFile=$log4j_config -Dsolr.home=$solr_home \
|
|
-classpath "$sdir/../../solr-webapp/webapp/WEB-INF/lib/*:$sdir/../../lib/ext/*:$sdir/../../lib/*" org.apache.solr.cloud.ZkCLI ${1+"$@"}
|
|
|