2010-02-08 08:30:06 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# OPTIONS:
|
|
|
|
# -f: start in the foreground
|
|
|
|
# -p <filename>: log the pid to a file (useful to kill it later)
|
|
|
|
|
|
|
|
# CONTROLLING STARTUP:
|
|
|
|
#
|
|
|
|
# This script relies on few environment variables to determine startup
|
|
|
|
# behavior, those variables are:
|
|
|
|
#
|
2011-03-30 15:03:24 -04:00
|
|
|
# ES_CLASSPATH -- A Java classpath containing everything necessary to run.
|
2010-06-07 11:20:07 -04:00
|
|
|
# JAVA_OPTS -- Additional arguments to the JVM for heap size, etc
|
|
|
|
# ES_JAVA_OPTS -- External Java Opts on top of the defaults set
|
2010-02-08 08:30:06 -05:00
|
|
|
#
|
2010-06-07 11:26:01 -04:00
|
|
|
#
|
|
|
|
# Optionally, exact memory values can be set using the following values, note,
|
2010-11-06 16:34:49 -04:00
|
|
|
# they can still be set using the `ES_JAVA_OPTS`. Sample format include "512m", and "10g".
|
2010-06-07 11:26:01 -04:00
|
|
|
#
|
2010-11-06 16:34:49 -04:00
|
|
|
# ES_MIN_MEM -- The minimum number of memory to allocate.
|
|
|
|
# ES_MAX_MEM -- The maximum number of memory to allocate.
|
2010-06-07 11:26:01 -04:00
|
|
|
#
|
2010-02-08 08:30:06 -05:00
|
|
|
# As a convenience, a fragment of shell is sourced in order to set one or
|
|
|
|
# more of these variables. This so-called `include' can be placed in a
|
|
|
|
# number of locations and will be searched for in order. The lowest
|
|
|
|
# priority search path is the same directory as the startup script, and
|
|
|
|
# since this is the location of the sample in the project tree, it should
|
|
|
|
# almost work Out Of The Box.
|
|
|
|
#
|
|
|
|
# Any serious use-case though will likely require customization of the
|
|
|
|
# include. For production installations, it is recommended that you copy
|
|
|
|
# the sample to one of /usr/share/elasticsearch/elasticsearch.in.sh,
|
|
|
|
# /usr/local/share/elasticsearch/elasticsearch.in.sh, or
|
|
|
|
# /opt/elasticsearch/elasticsearch.in.sh and make your modifications there.
|
|
|
|
#
|
|
|
|
# Another option is to specify the full path to the include file in the
|
|
|
|
# environment. For example:
|
|
|
|
#
|
|
|
|
# $ ES_INCLUDE=/path/to/in.sh elasticsearch -p /var/run/es.pid
|
|
|
|
#
|
|
|
|
# Note: This is particularly handy for running multiple instances on a
|
|
|
|
# single installation, or for quick tests.
|
|
|
|
#
|
|
|
|
# If you would rather configure startup entirely from the environment, you
|
|
|
|
# can disable the include by exporting an empty ES_INCLUDE, or by
|
|
|
|
# ensuring that no include files exist in the aforementioned search list.
|
|
|
|
# Be aware that you will be entirely responsible for populating the needed
|
|
|
|
# environment variables.
|
|
|
|
|
|
|
|
|
|
|
|
SCRIPT="$0"
|
|
|
|
|
|
|
|
# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
|
|
|
|
while [ -h "$SCRIPT" ] ; do
|
|
|
|
ls=`ls -ld "$SCRIPT"`
|
|
|
|
# Drop everything prior to ->
|
|
|
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
|
|
|
if expr "$link" : '/.*' > /dev/null; then
|
|
|
|
SCRIPT="$link"
|
|
|
|
else
|
|
|
|
SCRIPT=`dirname "$SCRIPT"`/"$link"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# determine elasticsearch home
|
|
|
|
ES_HOME=`dirname "$SCRIPT"`/..
|
|
|
|
|
|
|
|
# make ELASTICSEARCH_HOME absolute
|
|
|
|
ES_HOME=`cd $ES_HOME; pwd`
|
|
|
|
|
|
|
|
|
|
|
|
if [ -x $JAVA_HOME/bin/java ]; then
|
|
|
|
JAVA=$JAVA_HOME/bin/java
|
|
|
|
else
|
|
|
|
JAVA=`which java`
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If an include wasn't specified in the environment, then search for one...
|
|
|
|
if [ "x$ES_INCLUDE" = "x" ]; then
|
|
|
|
# Locations (in order) to use when searching for an include file.
|
|
|
|
for include in /usr/share/elasticsearch/elasticsearch.in.sh \
|
|
|
|
/usr/local/share/elasticsearch/elasticsearch.in.sh \
|
|
|
|
/opt/elasticsearch/elasticsearch.in.sh \
|
|
|
|
~/.elasticsearch.in.sh \
|
|
|
|
`dirname $0`/elasticsearch.in.sh; do
|
|
|
|
if [ -r $include ]; then
|
|
|
|
. $include
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
# ...otherwise, source the specified include.
|
|
|
|
elif [ -r $ES_INCLUDE ]; then
|
|
|
|
. $ES_INCLUDE
|
|
|
|
fi
|
|
|
|
|
2011-03-30 15:03:24 -04:00
|
|
|
if [ -z $ES_CLASSPATH ]; then
|
|
|
|
echo "You must set the ES_CLASSPATH var" >&2
|
2010-02-08 08:30:06 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Special-case path variables.
|
|
|
|
case "`uname`" in
|
|
|
|
CYGWIN*)
|
2011-03-30 15:03:24 -04:00
|
|
|
ES_CLASSPATH=`cygpath -p -w "$ES_CLASSPATH"`
|
2010-02-08 08:30:06 -05:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
launch_service()
|
|
|
|
{
|
|
|
|
pidpath=$1
|
|
|
|
foreground=$2
|
|
|
|
props=$3
|
|
|
|
es_parms="-Delasticsearch -Des.path.home=$ES_HOME"
|
|
|
|
|
|
|
|
if [ "x$pidpath" != "x" ]; then
|
|
|
|
es_parms="$es_parms -Des-pidfile=$pidpath"
|
|
|
|
fi
|
|
|
|
|
2011-03-04 13:14:22 -05:00
|
|
|
# The es-daemon option will tell ElasticSearch to close stdout/stderr,
|
2010-02-08 08:30:06 -05:00
|
|
|
# but it's up to us not to background.
|
|
|
|
if [ "x$foreground" != "x" ]; then
|
|
|
|
es_parms="$es_parms -Des-foreground=yes"
|
2011-03-30 15:03:24 -04:00
|
|
|
exec $JAVA $JAVA_OPTS $ES_JAVA_OPTS $es_parms -cp $ES_CLASSPATH $props \
|
2011-03-04 13:14:22 -05:00
|
|
|
org.elasticsearch.bootstrap.ElasticSearch
|
2010-02-08 08:30:06 -05:00
|
|
|
else
|
2011-03-04 13:14:22 -05:00
|
|
|
# Startup ElasticSearch, background it, and write the pid.
|
2011-03-30 15:03:24 -04:00
|
|
|
exec $JAVA $JAVA_OPTS $ES_JAVA_OPTS $es_parms -cp $ES_CLASSPATH $props \
|
2011-03-04 13:14:22 -05:00
|
|
|
org.elasticsearch.bootstrap.ElasticSearch <&- &
|
2010-02-08 08:30:06 -05:00
|
|
|
[ ! -z $pidpath ] && printf "%d" $! > $pidpath
|
|
|
|
fi
|
|
|
|
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
# Parse any command line options.
|
2010-04-26 04:05:56 -04:00
|
|
|
args=`getopt vfhp:D:X: "$@"`
|
2010-02-08 08:30:06 -05:00
|
|
|
eval set -- "$args"
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
2010-04-26 04:05:56 -04:00
|
|
|
-v)
|
2011-03-30 15:03:24 -04:00
|
|
|
$JAVA $JAVA_OPTS $ES_JAVA_OPTS $es_parms -cp $ES_CLASSPATH $props \
|
2010-04-26 04:05:56 -04:00
|
|
|
org.elasticsearch.Version
|
|
|
|
exit 0
|
|
|
|
;;
|
2010-02-08 08:30:06 -05:00
|
|
|
-p)
|
|
|
|
pidfile="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
-f)
|
|
|
|
foreground="yes"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-h)
|
2010-04-26 04:05:56 -04:00
|
|
|
echo "Usage: $0 [-f] [-h] [-p pidfile]"
|
2010-02-08 08:30:06 -05:00
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
-D)
|
|
|
|
properties="$properties -D$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
-X)
|
|
|
|
properties="$properties -X$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Error parsing arguments!" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Start up the service
|
|
|
|
launch_service "$pidfile" "$foreground" "$properties"
|
|
|
|
|
|
|
|
exit $?
|