Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Purpose

To provide installation prerequisites, system requirements and installation instructions of supervisor tools.

...

  • Place all files provided with therelease in any folder (preferably /root) on all the machines where the application is being deployed.

  • Go to the folder where you copied all the tar files and load them in docker engine running following command (the command starts after $ sign):

$ for file in *.tar; do docker load < $file; done  


Configurations

...

Create new DBs in the MSSQL server with any names corresponding to all microservices in the eabc -compose .yml file. Update the configurations in the compose file (values under environment tag in each service). Details are given below:

Generic configurations in all services:

DB_URL

URL of the database for the microservice.

For MSSQL:
jdbc:jtds:sqlserver://<ip>:<port>/<db_name> <>/<>   

Example:

jtds:sqlserver://192.168.1.92:1433/umm

jtds:sqlserver://192.168.1.92:1433/umm;instance=something

DB_DRIVER

Database driver.

For MSSQL:net.sourceforge.jtds.jdbc.Driver


DB_DIALECT

Database dialect.


For MSSQL:

org.hibernate.dialect.SQLServer2008Dialect


DB_USER

Database username which has full access on the configured DB

DB_PASS

Database password corresponding to the above user

TZ

Timezone configuration. Use the TZ database name for your region from the following URL:

https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List

PRIM_IP

IP of the Primary machine in the HA cluster OR IP of the machine where application’s been deployed.

Example:

192.168.1.76

SEC_IP

IP of the Secondary machine in the HA cluster.

Use the same value as of PRIM_IP if not deployed in HA

Example:

192.168.1.80

UMM-specific configurations:

In addition to the above configurations, the following additional configurations should also be set in UMM service in the compose file.

...