annotate tomcat-17/setenv.sh @ 569:15609ee0fe4e tip

rename file
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 24 May 2024 17:35:15 -0400
parents tomcat-17/setenv17.sh@d1050dda4be2
children
rev   line source
7
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
1 #! /bin/sh
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
2 #
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
3 echo "__________________________________________"
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
4
23
6a4ba408b8c4 improve tomcat configuration
smith@nwoca.org
parents: 8
diff changeset
5 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC"
6a4ba408b8c4 improve tomcat configuration
smith@nwoca.org
parents: 8
diff changeset
6 export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseStringDeduplication "
7
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
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"
568
d1050dda4be2 back to catalina_opts
belknapSSDT <zach.belknap@mcoecn.org>
parents: 565
diff changeset
10 export CATALINA_OPTS="$CATALINA_OPTS --add-exports=java.xml/com.sun.org.apache.xml.internal.serialize=ALL-UNNAMED"
7
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
11
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
12 echo "Using CATALINA_OPTS $CATALINA_OPTS"
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
13 echo "Using JAVA_OPTS $JAVA_OPTS"
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
14 echo "_________________________________________"
72f33ca6aa5b add admin password and custom CATALINA_OPS
smith@nwoca.org
parents: 6
diff changeset
15 echo ""