Mercurial > public > ssdt-docker
annotate tomcat-17/setenv17.sh @ 551:67c28d5e7904
update file name, add arg
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Thu, 23 May 2024 10:48:43 -0400 |
parents | tomcat-17/setenv.sh@9b920ae0f065 |
children | 39114f8cda17 |
rev | line source |
---|---|
7 | 1 #! /bin/sh |
2 # | |
3 echo "__________________________________________" | |
4 | |
23 | 5 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC" |
6 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseStringDeduplication " | |
7 | 7 export CATALINA_OPTS="$CATALINA_OPTS -Djava.security.egd=file:/dev/./urandom" |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
23
diff
changeset
|
8 export CATALINA_OPTS="$CATALINA_OPTS -Duser.language=en" |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
23
diff
changeset
|
9 export CATALINA_OPTS="$CATALINA_OPTS -Duser.region=US" |
7 | 10 |
11 echo "Using CATALINA_OPTS $CATALINA_OPTS" | |
12 echo "Using JAVA_OPTS $JAVA_OPTS" | |
13 echo "_________________________________________" | |
14 echo "" |