prefer jdk 7 over 6, and provide use the new ES_HEAP_SIZE env (so min max are the same)
This commit is contained in:
parent
7b37774a00
commit
a135c9bd8b
|
@ -46,7 +46,7 @@ ES_USER=elasticsearch
|
||||||
ES_GROUP=elasticsearch
|
ES_GROUP=elasticsearch
|
||||||
|
|
||||||
# The first existing directory is used for JAVA_HOME (if JAVA_HOME is not defined in $DEFAULT)
|
# The first existing directory is used for JAVA_HOME (if JAVA_HOME is not defined in $DEFAULT)
|
||||||
JDK_DIRS="/usr/lib/jvm/java-6-sun /usr/lib/jvm/java-7-oracle /usr/lib/jvm/java-6-openjdk /usr/lib/jvm/java-7-openjdk"
|
JDK_DIRS="/usr/lib/jvm/java-7-oracle /usr/lib/jvm/java-6-sun /usr/lib/jvm/java-7-openjdk /usr/lib/jvm/java-6-openjdk"
|
||||||
|
|
||||||
# Look for the right JVM to use
|
# Look for the right JVM to use
|
||||||
for jdir in $JDK_DIRS; do
|
for jdir in $JDK_DIRS; do
|
||||||
|
@ -59,11 +59,11 @@ export JAVA_HOME
|
||||||
# Directory where the ElasticSearch binary distribution resides
|
# Directory where the ElasticSearch binary distribution resides
|
||||||
ES_HOME=/usr/share/$NAME
|
ES_HOME=/usr/share/$NAME
|
||||||
|
|
||||||
# Minimum Heap memory to run ElasticSearch
|
# Heap Size (defaults to 256m min, 1g max)
|
||||||
ES_MIN_MEM=256m
|
#ES_HEAP_SIZE=2g
|
||||||
|
|
||||||
# Maximum Heap memory to run ElasticSearch
|
# Additional Java OPTS
|
||||||
ES_MAX_MEM=1g
|
#ES_JAVA_OPTS=
|
||||||
|
|
||||||
# ElasticSearch log directory
|
# ElasticSearch log directory
|
||||||
LOG_DIR=/var/log/$NAME
|
LOG_DIR=/var/log/$NAME
|
||||||
|
|
Loading…
Reference in New Issue