Last active
August 29, 2015 14:28
-
-
Save arganzheng/eb9bfc39c137fc7f9744 to your computer and use it in GitHub Desktop.
Tomcat JVM
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
# determine base directory; preserve where you're running from | |
#echo "Path to $(basename $0) is $(readlink -f $0)" | |
realpath=$(readlink -f "$0") | |
filepath=$(dirname "$realpath") | |
basedir=${filepath%/*} | |
LOG_DIR=${basedir}/logs | |
mkdir -p ${LOG_DIR} | |
GC_LOG_DIR=${basedir}/logs/gc | |
mkdir -p ${GC_LOG_DIR} | |
GC_FILE_PATH="${GC_LOG_DIR}/gc-$(date +%s).log" | |
JAVA_OPTS="$JAVA_OPTS -server -Xmn512M -Xms4096M -Xmx4096M -Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dorg.apache.catalina.connector.RECYCLE_FACADES=false -XX:MetaspaceSize=128M -XX:MaxMetaspaceSize=512M -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=1 -XX:+CMSClassUnloadingEnabled -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:SurvivorRatio=65536 -XX:MaxTenuringThreshold=0 -XX:CMSInitiatingOccupancyFraction=81 -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -verbose:gc -Xloggc:${GC_FILE_PATH} -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=${GC_LOG_DIR}" | |
JAVA_OPTS="$JAVA_OPTS -DLOG_DIR=${LOG_DIR} -Denv=idc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment