Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Expand
titleHow to Start and Stop Tomcat Services?

You may need to start and stop your Tomcat services to make sure that everything comes up correctly. Following are the quick steps to start, stop, or restart Tomcat Services:

Start Tomcat

  1. Go to Start > Apps > Control Panel > Administrative Tools > Services.
  2. Right-click Apache Tomcat 9.0 Tomcat9.
  3. Click Start.

 

Stop Tomcat

  1. Go to Start > Apps > Control Panel > Administrative Tools > Services.
  2. Right-click Apache Tomcat 9.0 Tomcat9.
  3. Click Stop.

Restart Tomcat

  1. Go to Start > Apps > Control Panel > Administrative Tools > Services.
  2. Right-click Apache Tomcat 9.0 Tomcat9.
  3. Click Restart.

...

Expand
titleWhere can I view Tomcat Logs?
  1. Go to Start > Apps > Apache Tomcat 9.0 Tomcat9 > Configure Tomcat.
  2. On the Logging tab, copy Log path value displayed here and open it in the Windows explorer Explorer for Tomcat log files. There are several additional log files in the log folder but only following two log files are mainly used.

     catalina<date>.log : Server global log file
     localhost_access_log.<date>.txt : Server Access Log file
Expand
titleHow can I configure Port for Tomcat?

Tomcat's main configuration file is the server.xml located at …/<ApacheInstallFolder>/Tomcat<version_no>/conf.

Change non-SSL/TLS HTTP/1.1 Connector on port number 8080 to the desired port number.

Image RemovedImage Added

Configure a connector for the port given in redirectPort. Update the Keystore path, password, and the server name in the file. Save the file.

Image RemovedImage Added

SSL Configuration

  1. Go to …/<ApacheInstallFolder>/Tomcat<version_no>/conf.
  2. Open web.xml file.
  3. Add the security constraint at the end of the file.
    Image Removed
    Image Added

  4. Go to Start > All Programs > Apache Tomcat 9.0 > Configure Tomcat.
  5. On the Java tab, append the below lines in the Java Options box.
    -Djavax.net.ssl.trustStore=<Adeptia Connect Truststore location)
    -Djavax.net.ssl.trustStorePassword=<Adeptia Connect Truststore password>
    Image Removed
    Image Added
Expand
titleHow can I ensure that Tomcat is working fine?

To check the status of Tomcat, open the browser and type the URL:

http://localhost:8080/ 

The Tomcat welcome page appears, indicating Tomcat is running successfully.

...

Expand
titleHow can I configure Adeptia Suite URL in Tomcat?
  1. Go to …/<ApacheInstallFolder>/Tomcat<version_no>/webapps/Working_Directory/resources_config.
  2. Open application.properties file in the Text Editor and do the following:

Set the IP address where Adeptia Suite is running in the app.base.adeptia.url and app.adeptia.host.url.

The URL format for app.base.adeptia.url is 

     <protocol_name>://<IP_Address:<port_no>/adeptia/rest

The URL format for app.adeptia.host.url is

     <protocol_name>://<IP_Address:<port_no>

where,

<protocol_name> is the name of the protocol you are using. For example, http or https.

<IP_Address> is the IP address of the computer on which Adeptia Suite is running.

<port_no> is the port number of the computer on which Adeptia Suite is running.

For example,

https://10.0.0.125:8443/adeptia/rest

http://10.0.0.125:8080

Make sure that IP address is same in both URLs.

Image Removed

 Image Added