Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected links that should have been relative instead of absolute.

In order to access Adeptia Connect UI, you need to install Apache Tomcat 9. Click here to download Apache Tomcat 9. Choose the Tomcat according to your operating system.

Installing Apache Tomcat 9

To install:

  1. Run the installer.
  2. Click Next to accept License agreement.
  3. Read the agreement carefully and click I Agree to accept the terms of the agreement.
  4. Select the Minimum components to install and click Next to configure Tomcat.
    Image Removed
    On the Configuration wizard, 
    1. Type 80 in the HTTP/1.1 Connector Port.
    2. Make sure that no other application is running on port 80.

       

    Image Removed
  5. On the Java Virtual Machine wizard, make sure that the jre path displayed is same as the installed jre path.
  6. Click Next to begin the installation. The installer starts installing Apache Tomcat.
  7. Click Finish to exit the installer.
  8. Click Start > Settings > Control Panel > Administrative Tools > Services. The Services window appears, listing all the services installed on the computer.
  9. Right click Apache Tomcat 9.0 Tomcat9 and click Properties.
  10. On the General tab, select Automatic from the Startup type.
    Image Removed
  11. Click Apply.
  12. Click OK.

    InfoFor a clustered environment, install Apache Tomcat 9 on other nodes following the same stepsDownload and extract the file to the /opt folder.
  13. Modify the /etc/environment file to set CATALINA_HOME variable for Tomcat. For example,

    vi /etc/environment
  14. Set the value in the variable CATALINA_HOME. Set the value where you have extracted Tomcat zip file. For example,

    CATALINA_HOME="/opt/apache-tomcat_9.0.0.m19"
  15. Restart your computer.

Verifying Installation

After Apache Tomcat 9 is installed successfully, you need to verify whether Apache Tomcat 9 is installed successfully or not. To verify:

  1. Click Start > Settings > Control Panel > Administrative Tools > Services. The Services window appears, listing all the services installed on the computer.
  2. Check the status of Apache Tomcat. The Running status indicates Apache Tomcat has been installed and running successfully.
    Image Removed
    Open the Terminal with root user.
  3. Execute the below command:
    echo $CATALINA_HOME.
    Tomcat installed path appears indicates the successful installation.


    Image Added

Starting Tomcat

  1. Open the Terminal with root user.

  2. Go to the Tomcat home directory.
  3. Go to the bin folder.
  4. Execute the below command:

    ./startup.sh

    Tomcat is started successfully.


    Image Added

Verifying Tomcat 

 Open the browser and hit the URL in the below format: 

    <protocol_name>://<IP_address>:<port_number> 

          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 where Apache Tomcat 9 is installed. 

                    <port_no> is the port number of the computer on which Apache Tomcat 9 is installed. The default port number is 8080.

...

 

           For example, http://192.168.1.1:8080

...

 

         

...

 Tomcat welcome screen appears, indicating the successful installation.

...

Image Added