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:
- Download and extract the file to the /opt folder.
On the Terminal, execute the below command:
vi /etc/environment
Set the value in the variable CATALINA_HOME:
CATALINA_HOME="/opt/apache-tomcat_9.0.0.m19"
- 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:
- Open the Terminal with root user.
Execute the below command:
echo $CATALINA_HOME.
Tomcat installed path appears indicates the successful installation.
Starting Tomcat
Open the Terminal with root user.
- Go to the Tomcat home directory.
- Go to the bin folder.
Execute the below command:
./startup.sh
Tomcat is started successfully.
Next Step