The Tomcat pack provides the user with the ability to use Apache Tomcat as a platform in their assembly.
The default log file for Tomcat is catalina.out
and both System.out
and
System.err
are redirected to it. The location of the file is configured via
LogFilesPath and defaults to /log/apache-tomcat
. The system logrotate is
used to control the rotation and retention on the basis of eight days or 2GB per
compute.
Keep in mind that compute storage is ephemeral and log as therefore not kept. For all critical application logging and statistics gathering usage of logmon is recommended.
SSL configuration for Tomcat is similar to the usage with the apache pack relying on the certificate component. As a Java application, Tomcat also requires configuration of the keystore component.
In this method communication from client to the load balancer is encrypted (HTTPS), but the communication from load balancer to Tomcat is server is in clear text (HTTP).
https 443 http
8080
. If you are using a software loadbalancer such as Octavia, set the Listeners
to terminated_https 443 http 8080
.In this method communication is encrypted from client to load balancer (HTTPS) and from load balancer to Tomcat (HTTPS).
ssl_bridge 443
ssl_bridge 8443
. If you are using a software loadbalancer such as Octavia,
set the Listeners to https 443 https 8443
.To add attributes to a connector element or change the default value of a connector attribute, follow the steps below. For additional details, refer to the Tomcat Connection documentation.
'HTTP/1.1'
.Key ‘HTTP/1.1’ | Value ‘HTTP/1.1’ |
---|---|
Blocking Java connector | org.apache.coyote.http11.Http11Protocol |
Non blocking Java connector | org.apache.coyote.http11.Http11NioProtocol |
The APR/native connector | org.apache.coyote.http11.Http11AprProtocol |
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<!-- A "Connector" using the shared thread pool-->
<Connector executor="tomcatThreadPool"
port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
maxKeepAliveRequests="100"
<!-- All additional Attributes go here eg below -->
/>
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation -->
<!-- opted in to ssl activation w/ keystore -->
<Connector port="8443"
protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="50"
keystoreFile="/app/certs/keystore.jks"
keystorePass="changeit"
scheme="https" secure="true"
clientAuth="false" sslProtocol="TLSv1" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2"
<!-- All additional Attributes go here eg below -->
/>
Currently you can not add multiple connectors to Tomcat. It is important to test performance on these settings in the lower environment before you do it in production.
The SSL connector is only configured, if you have KeyStore and certificate optional component. For instructions on how to enable SSL, refer to SSL Certificate Component
2011 - 2020 © Walmart Inc. All Rights Reserved.