-
-
Save rdkls/8797456 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ElasticSearch Service | |
description "ElasticSearch" | |
start on (net-device-up | |
and local-filesystems | |
and runlevel [2345]) | |
stop on runlevel [016] | |
respawn limit 10 5 | |
env ES_HOME=/usr/share/elasticsearch/home | |
env ES_MIN_MEM=256m | |
env ES_MAX_MEM=2g | |
env DAEMON="${ES_HOME}/bin/elasticsearch" | |
env DATA_DIR=/data/elasticsearch/data | |
env CONFIG_DIR=/etc/elasticsearch | |
console output | |
script | |
if [ -f /etc/default/elasticsearch ]; then | |
. /etc/default/elasticsearch | |
fi | |
su -s /bin/dash -c "$DAEMON -f -Des.path.conf=$CONFIG_DIR -Des.path.home=$ES_HOME -Des.path.logs=$LOG_DIR -Des.path.data=$DATA_DIR -Des.path.work=$WORK_DIR" elasticsearch | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment