An error occurred while loading the file. Please try again.
-
Vít Novotný authored
- This makes all scripts more robust and fixes a specific problem with index-alphabetic-browse.sh where it would not resolve VUFIND_HOME correctly when invoked from within the VuFind directory with no environment variable set.
76eebfe2
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
solr.sh 1.85 KiB
#!/bin/sh
#
# Startup script for the VuFind Jetty Server under *nix systems
#
# Configuration variables
#
# VUFIND_HOME
# Home of the VuFind installation.
#
# SOLR_BIN
# Home of the Solr executable scripts.
#
# SOLR_HEAP
# Size of the Solr heap (i.e. 512M, 2G, etc.). Defaults to 1G.
#
# SOLR_HOME
# Home of the Solr indexes and configurations.
#
# SOLR_PORT
# Network port for Solr. Defaults to 8080.
#
# JAVA_HOME
# Home of Java installation (not directly used by this script, but passed along to
# the standard Solr control script).
#
# SOLR_ADDITIONAL_START_OPTIONS
# Additional options to pass to the solr binary at startup.
#
# SOLR_ADDITIONAL_JVM_OPTIONS
# Additional options to pass to the JVM when launching Solr.
#
usage()
{
echo "Usage: $0 {start|stop|restart|status}"
exit 1
}
[ $# -gt 0 ] || usage
# Set VUFIND_HOME
if [ -z "$VUFIND_HOME" ]
then
# set VUFIND_HOME to the absolute path of the directory containing this script
# https://stackoverflow.com/questions/4774054/reliable-way-for-a-bash-script-to-get-the-full-path-to-itself
VUFIND_HOME="$(cd "$(dirname "$0")" && pwd -P)"
if [ -z "$VUFIND_HOME" ]
then
exit 1
fi
fi
if [ -z "$SOLR_HOME" ]
then
SOLR_HOME="$VUFIND_HOME/solr/vufind"
fi
if [ -z "$SOLR_LOGS_DIR" ]
then
SOLR_LOGS_DIR="$SOLR_HOME/logs"
fi
if [ -z "$SOLR_BIN" ]
then
SOLR_BIN="$VUFIND_HOME/solr/vendor/bin"
fi
if [ -z "$SOLR_HEAP" ]
then
SOLR_HEAP="1G"
fi
if [ -z "$SOLR_PORT" ]
then
SOLR_PORT="8080"
fi
if [ -z "$SOLR_ADDITIONAL_START_OPTIONS" ]
then
SOLR_ADDITIONAL_START_OPTIONS=""
fi
if [ -z "$SOLR_ADDITIONAL_JVM_OPTIONS" ]
then
SOLR_ADDITIONAL_JVM_OPTIONS=""
fi
export SOLR_LOGS_DIR=$SOLR_LOGS_DIR
"$SOLR_BIN/solr" "$1" ${SOLR_ADDITIONAL_START_OPTIONS} -p "$SOLR_PORT" -s "$SOLR_HOME" -m "$SOLR_HEAP" -a "-Ddisable.configEdit=true -Dsolr.log=$SOLR_LOGS_DIR $SOLR_ADDITIONAL_JVM_OPTIONS"