Solution Prerequisites
...
Minimum requirement | |
---|---|
CPU | 2 cores vCPU (4 cores for non-HA deployment) |
RAM | 4 GB (8 GB for non-HA deployment) |
Disk | 100 GB mounted on / |
NICs | 1 NIC |
Software Requirements
Installation Steps
Internet should be available on the machine where the application is being installed and connections on port 9242 should be allowed in the network firewall to carry out the installation steps. Trailing # is not a part of the command.
...
- Download the deployment script ecm-deployment.sh and place it in any directory. This script will:
- delete the ecm-deployment directory in the present working directory if it exists.
- clone the ecm-deployment repository from gitlab in the present working directory.
To execute the script, give it the execute permissions and execute it. (on RHEL, run commands with sudo)
Code Block language bash # chmod +x ecm-deployment.sh # ./ecm-deployment.sh
Update environment variables in the following files inside
environmentecm-deployment/docker/environment_variables
folder.Update these variables for ECM in the environment-variables.env
Name Description Do not change the default values for non-HA deployment. For HA, use SQL server cluster settings instead of the defaults. DB_URL
Database connection url
For example:
- jdbc:jtds:sqlserver://<MACHINE-IP or FQDN>:PORT/db_name
- jdbc:jtds:sqlserver://<MACHINE-IP or FQDN>:PORT/db_name;instanceName=SomeInstance
- jdbc:jtds:sqlserver://192.168.1.92:1433/ECM_DEV
DB_USER
database user DB_PASS
database password DB_DRIVER
JDBC driver e.g., net.sourceforge.jtds.jdbc.Driver DB_DIALECT
Database dialect e.g., org.hibernate.dialect.SQLServer2008Dialect Change the following variables for ECM services DATABASE_ENGINE
sqlServer UCCX_HRDB_PASSWORD UCCX reporting user database password, only used of UCCX deployments SYNC_ENABLED
YES
SYNC_INTERVAL
Interval in minutes between every sync job, default is 5
FEED_INTERVAL
Interval in minutes between every sync job, default is 1 FETCH_DELAY
2, do not change.
OUTDATED_INTERVAL
24, this is number of hours a contact is closed in ECM with Dangling status if it is not synced
REDUNDANT_DEPLOYMENT
Decides if synchronizer deployment is redundant. Set it to "true". Holds strings "true" or "false". Default is false INSTANCE_NAME
Used for differentiation of instances when deployed redundant, could be any string. It should be different on both machines. UCCE_SHARED_PATH_DOMAIN
Dialer import folder machine domain UCCE_SHARED_PATH_USER
Dialer import folder machine username UCCE_SHARED_PATH_PASSWORD
Dialer import folder machine password Dialer import folder machine IPUCCE_SHARED_PATH_IP
file.
Update the following UMM environment variables in the same file.
Name Description Change the following variables as per your environment For UMM PRIM_FINESSE_IP
Primary Finesse URL including port (if not 80 or 443)
For example:
SEC_FINESSE_IP
Secondary Finesse URL including port (if not 80 or 443)
For example:
FINESSE_USER
Finesse administrator user FINESSE_PASS
Finesse administrator password UMM_DB_URL UMM Database UMM_DB_DRIVER UMM Database driver UMM_DB_DIALECT
UMM Database dialect UMM_DB_PASS UMM Database password UMM_DB_USER UMM Database username ADMIN_PASS
The password of the admin user
SSO_ENABLED
it should be set to 'false' by default. No need to change this. SSL_TRUST_STORE_PATH
Path of the SSL truststore including the name. This truststore should include UCCX SSL certificates if Finesse APIs needed to access via HTTPS SSL_TRUST_STORE_PASSWORD Truststore password Change the following variables for Frontend (ECM and UMM) SERVER_URL Provide the URL of Umm :
http://<machine_IP>:<PORT>For Example
In the case of HA, machine_IP should be the virtual IP of HA
CISCO_TYPE UCCE/UCCX (capital case without quotes) it should be set to 'false' by default. No need to change this.SOO_AUTO_LOGIN
.SUP_VERSION
No need to change its default value PCS_URL
http://<MACHINE-IP or FQDN>:PORT
For Example
http://192.168.166:7676/PCS. PCS_USERNAME
database username database passwordPCS_PASSWORD
- Get domain/CA signed SSL certificates for ecm FQDN/CN and place the files in
ecm-deployment/docker/certificates
folder. The file names should beserver.crt
andserver.key
. Copy the ecm-deployment directory to the second machine for HA. Execute below command
Code Block # scp -r ecm-deployment root@machine-ip:~/
- Go to the second machine and update the environment variables where necessary like INSTANCE_NAME and SERVER_URL
Execute the following commands inside the ecm-deployment directory on both machines.
Code Block language bash # chmod 755 install.sh # ./install.sh
Run the following command to ensure that all the components are up and running. The screenshot below shows a sample response for a standalone non-HA deployment.
Code Block language bash # docker ps
...