view tomcat-17/setenv.sh @ 535:bd42d00aa1f1

Update protections on update-ess-app.sh to allow execution
author Matt Calmes <calmes@ssdt-ohio.org>
date Mon, 06 May 2024 10:20:41 -0400
parents 2201156ad763
children 7d108e6b44f2 0fd261e85cea
line wrap: on
line source
#! /bin/sh
#
echo "__________________________________________"

export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC"
export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseStringDeduplication "
export CATALINA_OPTS="$CATALINA_OPTS -Djava.security.egd=file:/dev/./urandom"
export CATALINA_OPTS="$CATALINA_OPTS -Duser.language=en"
export CATALINA_OPTS="$CATALINA_OPTS -Duser.region=US"

echo "Using CATALINA_OPTS $CATALINA_OPTS"
echo "Using     JAVA_OPTS $JAVA_OPTS"
echo "_________________________________________"
echo ""