...
- Create a new folder to serve as <SOAVIRT_HOME>. It can be located anywhere except within the Apache Tomcat webapps directory. For example, on Windows you might use c:/wars/soavirt.
- Extract the contents of the WAR file into <SOAVIRT_HOME>.
- Download Apache Tomcat Core 7 or above for your platform from http://tomcat.apache.org/.
- Extract the downloaded Apache Tomcat to a location of your choice (<TOMCAT_HOME>).
- In <TOMCAT_HOME>/conf/Catalina/localhost/, create an empty ROOT.xml file.
Open <TOMCAT_HOME>/conf/Catalina/localhost/ROOT.xml file and add a Context element such as the following (making the appropriate adjustments to docBase absolute path as needed, depending on your specific <SOAVIRT_HOME> location):
Code Block <Context docBase="c:/wars/soavirt" path="" reloadable="true" />
- (Optional) If you want to deploy the WAR file over HTTPS, perform the following steps to configure for SSL:
- Create a keystore file to store the server's private key and self-signed certificate by executing the following command:
<JAVA_HOME>/bin/keytool -genkey -alias tomcat -keyalg RSA -keystore /path/to/soavirt.my/keystore
- Specify "changeit" for all passwords changeit as the password when prompted. It is recommended for the keystore and <tomcat> alias passwords to be the same.
The
soavirt.keystore
file will be created in the specified directory.A new file in the /path/to/my directory named "keystore" will be created. Uncomment the SSL HTTP/1.1 Connector entry in the <TOMCAT_HOME>/conf/server.xml configuration fileand update the
keystoreFile
attribute value:Code Block <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" keystoreFile="/path/to/soavirt${user.home}/.keystore" keystorePass="changeit" clientAuth="false" sslProtocol="TLS"/> keystoreFile attribute value to "/path/to/my/keystore"
- Create a keystore file to store the server's private key and self-signed certificate by executing the following command:
- Specify the ports used by Apache Tomcat in the config.properties file at <SOAVIRT_HOME>/WEB-INF/config.properties (see Configuring Virtualize Server for details). For example, you might use
server.port.http=8080
orserver.port.https=8443
. The ports specified in config.properties must match the ports specified in the Tomcat configuration. - Specify the appropriate license in the config.properties file at <SOAVIRT_HOME>/WEB-INF/config.properties (see Configuring Virtualize Server for details).
- Start Tomcat (e.g., from <TOMCAT_HOME>/bin).
- Browse to http://localhost:8080/ (adjust the port if needed). The following message confirms that the application was installed correctly:
...
- Download Apache Tomcat Core 7 or above for your platform from http://tomcat.apache.org/.
- Extract the downloaded Apache Tomcat to a location of your choice (<TOMCAT_HOME>).
- Remove the “ROOT” folder from the webapps directory.
- Rename the “soavirt_<version>.war” file to “ROOT.war”.
- Copy “ROOT.war” into the <TOMCAT_HOME>/webapps/ folder.
- (Optional) If you want to deploy the WAR file over HTTPS, perform the following steps to configure for SSL:
- Create a keystore file to store the server's private key and self-signed certificate by executing the following command:
<JAVA_HOME>/bin/keytool -genkey -alias tomcat -keyalg RSA -keystore /path/to/my/soavirt.keystore
- Specify "changeit" for all passwords as the password when prompted. It is recommended for the keystore and <tomcat> alias passwords to be the same.
- A new file in the /path/to/my directory named "keystore" will be created.The
soavirt.keystore
file will be created in the specified directory. Uncomment the SSL HTTP/1.1 Connector entry in the <TOMCAT_HOME>/conf/server.xml configuration file and update the
keystoreFile
attribute value:Code Block <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" keystoreFile="/path/to/soavirt${user.home}/.keystore" keystorePass="changeit" clientAuth="false" sslProtocol="TLS"/> keystoreFile attribute value to "/path/to/my/keystore"
- Create a keystore file to store the server's private key and self-signed certificate by executing the following command:
- Edit the existing config.properties file (or create a new file) stored in the <TOMCAT_HOME>/webapps folder and add entries for the ports used by Apache Tomcat (see Configuring Virtualize Server for details). For example, add
server.port.http=8080
orserver.port.https=8443
. The ports specified in config.properties must match the ports specified in the Tomcat configuration. - Specify the appropriate license in the config.properties file at <TOMCAT_HOME>/webapps/config.properties (see Configuring Virtualize Server for details).
- Start Tomcat (e.g., from <TOMCAT_HOME>/bin).
- Browse to http://localhost:8080/ (adjust the port if needed). The following message confirms that the application was installed correctly:
...