JAVA_HOME=/QOpenSys/QIBM/ProdData/JavaVM/jdk11/64bit
JAVA_OPTS="$JAVA_OPTS -Djava.awt.headless=true"
Apache Tomcat
Before installation, check the software requirements, currently supported Apache Tomcat version and required Java version in the Software Requirements section. If you encounter any problems during the installation, see Troubleshooting for a possible solution. |
Installation of Apache Tomcat
-
Download the binary distribution: Tomcat 9.
-
Extract the downloaded archive (
zip
ortar.gz
). -
Set up
JAVA_HOME
to point to the correct Java version:-
Unix-like systems:
Setup the path in
/etc/profile
or/etc/bash.bashrc
:export JAVA_HOME=/path/to/JDK
-
Windows system:
Under System Variables in Advanced System Settings, create a new variable named
JAVA_HOME
. The value should contain the path to the JDK installation directory.
-
-
Run Tomcat:
-
Unix-like systems:
Run the
[Tomcat_home]/bin/startup.sh
file. -
Windows system:
Run the
[Tomcat_home]\bin\startup.bat
file.
-
Continue with: Installation of CloverDX Server.
Apache Tomcat as a Windows Service
-
Download the 32-bit/64-bit Windows Service Installer file in the Binary Distributions section on the Tomcat 9 download page.
-
Use the standard installation wizard to install Apache Tomcat.
-
When Tomcat is installed as a Windows service, CloverDX is configured by one of the following options:
-
Graphical configuration utility
-
Run the
[Tomcat_home]\bin\Tomcat9w.exe
file. -
In the Apache Tomcat Properties dialog box, select the Java tab and set the initial and maximum heap size in Initial memory pool and Maximum memory pool fields to 512MB and 1024MB respectively. Other configuration parameters can be defined in Java Options field, being separated by new line.
-
Click on Apply and restart the service.
The Java tab allows you to use alternative JVM by setup of path to jvm.dll
file.
-
-
Command Prompt tool
-
Run the
[Tomcat_home]\bin\Tomcat9.exe
file. -
If Tomcat is running, navigate to
[Tomcat_home]\bin
and stop the service by typing:.\Tomcat9.exe //SS//Tomcat9
in the Command Prompt. (When using different version of Tomcat, change the number in the command to reflect the installed version.)
-
Configure the service by typing the command:
.\Tomcat9.exe //US//Tomcat9 --JvmMs=512 --JvmMx=1024 --JvmOptions=-Dclover.config.file=C:\path\to\clover-config.properties#-XX:MaxMetaspaceSize=256m
The parameter JvmMs is the initial and JvmMx is the maximum heap size in MB;
JvmOptions
are separated by '#' or ';'. -
Start the service from Windows administration console or by typing the following command in the Command Prompt:
.\Tomcat9.exe //TS//Tomcat9
-
-
By default, when Apache Tomcat is run as a Windows service, it is not available for Java process monitoring tools (e.g., JConsole or JVisualVM). However, these tools can still connect to the process via JMX. See JMX Configuration for more information. |
More information about running Java applications as Windows Service can be found at Apache Commons.
Continue with: Installation of CloverDX Server.
Apache Tomcat on IBM AS/400 (iSeries)
Additional settings are required to run CloverDX Server on the iSeries platform:
-
Declare you are using Java 11 or 17 64-bit.
-
Run Java with parameter
-Djava.awt.headless=true
.
To configure the settings, modify (or create) the [Tomcat_home]/bin/setenv.sh
file to contain:
Continue with: Installation of CloverDX Server
Installation of CloverDX Server
-
Check if you meet the prerequisites:
-
Eclipse Temurin JDK 11 or 17 is installed (See Supported stacks for required Java version.)
-
JAVA_HOME
environment variable is set (see Setting up JAVA_HOME). -
A supported version of Apache Tomcat is installed.
-
-
It is strongly recommended to adjust the default limits for Memory allocation (see the Memory Settings section).
You can set the initial and maximum memory heap size by adjusting the Xms and Xmx JVM parameters:
-
Unix-like systems:
-
Create the
[Tomcat_home]/bin/setenv.sh
file. -
Type or paste in the following lines:
export CATALINA_OPTS="$CATALINA_OPTS -XX:MaxMetaspaceSize=512m -Xms128m -Xmx1024m" export CATALINA_OPTS="$CATALINA_OPTS -Dderby.system.home=$CATALINA_HOME/temp" echo "Using CATALINA_OPTS: $CATALINA_OPTS"
-
-
Windows systems:
-
Create the
[Tomcat_home]\bin\setenv.bat
file. -
Type or paste in the following lines:
set "CATALINA_OPTS=%CATALINA_OPTS% -XX:MaxMetaspaceSize=512m -Xms128m -Xmx1024m" set "CATALINA_OPTS=%CATALINA_OPTS% -Dderby.system.home=%CATALINA_HOME%/temp" echo "Using CATALINA_OPTS: %CATALINA_OPTS%"
-
-
-
Go to the download section of your CloverDX account and download the
clover.war
(web archive) file containing CloverDX Server for Apache Tomcat. -
Copy
clover.war
to the[Tomcat_home]/webapps
directory. -
Tomcat should automatically detect and deploy the
clover.war
file. -
Check whether CloverDX Server is running:
-
Run Tomcat.
-
Open a new tab in your browser and type
http://localhost:8080/clover/
in the address bar. -
Use the default administrator credentials to access the web GUI:
username: clover
password: clover
-
Continue with: Configuration of CloverDX Server on Apache Tomcat
Configuration of CloverDX Server on Apache Tomcat
Default installation (without any configuration) is only recommended for evaluation purposes. For production use, at least a dedicated, system database and SMTP server configuration is recommended. |
For easy configuration of CloverDX Server, use Setup GUI, where you can configure various properties including the connection to the database, username and password, path to the license file, private properties, Clusters and much more (see List of Configuration Properties and Cluster Configuration). We recommend you place the file in a specified location and define the path to the file with a system property.
The content of such a file (an example with a PostgreSQL database):
jdbc.driverClassName=org.postgresql.Driver
jdbc.url=jdbc:postgresql://127.0.0.1/clover_db?charSet=UTF-8
jdbc.username=yourUsername
jdbc.password=yourPassword
jdbc.dialect=org.hibernate.dialect.PostgreSQLDialect
Properties File in Specified Location
The properties file is loaded from a location specified by a system property or by an environment variable clover_config_file
or clover.config.file
.
-
Create the
cloverServer.properties
file in a directory readable by Apache Tomcat. (If you need an example of connection to any of the supported database systems, see System Database Configuration.) -
Edit the
[Tomcat_home]/bin/setenv.sh
file (if it does not exist, you can create it). -
Set the system property by adding the following line into the file:
JAVA_OPTS="$JAVA_OPTS -Dclover_config_file=/path/to/cloverServer.properties"
Continue with: Postinstallation Configuration |