Mercurial > public > ssdt-docker
view tomcat-17/setenv.sh @ 528:e483148f5283
Add backup, restore, and update ess scripts. Handle ess in workflows update and remove container stop/removal from install ess script.
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Tue, 23 Apr 2024 14:47:12 -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 ""