Install Apache Tomcat - Intergraph Smart Materials - Installation & Upgrade - Hexagon

Intergraph Smart Materials Web Installation (2020)

Language
English
Product
Intergraph Smart Materials
Subproduct
Web
Search by Category
Installation & Upgrade
Smart Materials/Smart Reference Data Version
2020 (10.0)
  1. Install Java JDK 8 or the latest update from http://java.com.

  2. Download the latest version of Apache Tomcat from http://tomcat.apache.org.

    Example file: apache-tomcat-9.0.36-windows-x64.zip

  3. Extract the zip file contents to c:\apache\.

  4. Locate and update the tomcat-users.xml file available in the <apache-home>\conf location with the following information:

    <role rolename="tomcat"/>

    <role rolename="admin-gui"/>

    <role rolename="manager-gui"/>

    <user username="tomcat" password="manager1" roles="tomcat,admin-gui,manager-gui"/>

    Apache Tomcat Installation Conf

  5. Update the port number to 9090 in the server.xml file available in the <apache-home>\conf location with the following information:

    <Connector port="9090" protocol="HTTP/1.1"

    connectionTimeout="20000"

    redirectPort="8443" />

    <Connector port="9090" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true">

    <SSLHostConfig>

    <Certificate certificateFile="###Path-to-Certificate-File.cer###"

    type="RSA" certificateKeyFile="###Path-To-Key-File.key###" />

    </SSLHostConfig>

    </Connector>

  6. To install the Apache Tomcat as a service, perform the following steps:

    1. Open command prompt as an Administrator.

    2. Change directory to <apache-home>\bin.

    3. Set JAVA_HOME= C:\Program Files\Java\jdk1.8.0_200.

    4. Execute the following command:

      service.bat install

  7. Change the service startup type to Automatic.

    Apache01

  8. Start the Apache Tomcat service.

  9. In a browser enter the following to check if Apache Tomcat is installed successfully:

    http://<FQDN>:9090

    Apache02