Deploying Adeptia Connect UI - Linux
This section helps you to deploy Adeptia Connect UI on Tomcat. Before start deploying, stop Tomcat.
To deploy:
- Download and extract the Adeptia Connect zip file
- Delete the existing ROOT directory from .../TomcatInstallDirectory>/webapps.
- Open the extracted directory and copy Root.war to .../TomcatInstallDirectory>/webapps.
- Create a directory named working_directory in the .../TomcatInstallDirectory>/webapps.
- Copy resources_config directory from the extracted folder and paste it to the working_directory directory created in step 4.
- Go to .../TomcatInstallDirectory>/conf.
Edit catalina.properties file to configure Adeptia working directory path. Add the path where you have created working_directory. Add the command at the end of the file. For example,
app.working.dir.path=/opt/apache-tomcat-9.0.0.M19/webapps/working_directory
- Save and exit from the Terminal.
- Go to .../TomcatInstallDirectory>/webapps/working_directory/resources_config.
- Open application.properties file in the Text Editor and do the following:
Set the IP address or domain name where Adeptia Suite is running in the app.adeptia.host.url.
The URL format is
<protocol_name>://<IP_Address or domain_name>:<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. For a clustered environment, provide the IP address or domain name of the load balancer.
      <port_no> is the port number of the computer on which Adeptia Suite is running.
Â
Set the IP address or domain name where Tomcat is running in the app.connect.domain.
The URL format is:
<IP_Address or domain_name>:<port_no>.
where,
      <IP_Address or domain_name> is the IP address or domain name of the computer on which Tomcat is running. For a clustered environment, provide the IP address or domain name of the load balancer.
      <port_no> is the port number of the computer on which Tomcat is running.
Â
Restart Tomcat.
Â
Next Step