8 Known Issues - Resolutions
This topic describes about the known issues - resolutions.
Deployment issue oblm-integration-service
If deploying for oblm-integration-services-8.2.0 fails with below error.
org.flywaydb.core.api.FlywayException:
Validate failed: Detected failed migration to
version 502.05.1.0.8.2.0.09.502005006.5.0 (LMX TM
ACCOUNT VD BAL)
Check if there are existing records with same value for all the four parameters (ACCOUNT_NUMBER, BRANCH_CODE, CURRENCY_CODE, VALUE_DATE) in table LMX_TM_ACCOUNT_VD_BAL.
- Run the below query to check the existing
records for the four
parameters.
SELECT ltavd.* FROM <LMX_SCHEMA>.LMX_TM_ACCOUNT_VD_BAL ltavd INNER JOIN ( SELECT ACCOUNT_NUMBER, BRANCH_CODE, CURRENCY_CODE, VALUE_DATE FROM OBLMLMX.LMX_TM_ACCOUNT_VD_BAL GROUP BY ACCOUNT_NUMBER, BRANCH_CODE, CURRENCY_CODE, VALUE_DATE HAVING COUNT(*) > 1 )t ON ltavd.ACCOUNT_NUMBER = t.ACCOUNT_NUMBER AND ltavd.BRANCH_CODE = t.BRANCH_CODE AND ltavd.CURRENCY_CODE = t.CURRENCY_CODE AND ltavd.VALUE_DATE = t.VALUE_DATE;
- Delete the existing records returned from the
above query by using below
query.
DELETE FROM <LMX_SCHEMA>.LMX_TM_ACCOUNT_VD_BAL WHERE ID IN ('<Enter ID 1>', '<Enter ID 2>', '<Enter ID 3>', '<Enter ID 4>'); COMMIT;
- Delete the script history instance in the
“flyway_schema_history”
DELETE FROM <LMX_SCHEMA>."flyway_schema_history" WHERE "success" = '0'; COMMIT;
- Restart the server and deploy the oblm-integration services-8.2.0. again.
App Shell login issue – 8.2.0
If the app shell login fails during the deployment of 8.2.0 artifacts.
- Check for the following parameters is set in all
domains:
Dspring.cloud.loadbalancer.ribbon.enabled=false
- Set the property if not found and restart the domain.
Deployment issue while installing the application using Installer
While deploying the war file fails with below error:
dataSource or
dataSourceClassName or jdbcUrl is
required
- If the product and foundation setup are in 2 different VM's, ensure that the syncup between these 2 VM's are performed.
- Login to the plato schema and verify the entries for the respective warfile application are correct in the properties table like, jdbcURL, schema name, port etc..,
- Check the Hostname and plato related URL in setuserOverrides.sh of product.
- Restart the service.
While deploying the war file fails with below error:
jdbc.<<SCHEMA_NAME>
- Verify the password of the respective schema of the war file being deployed in databag.
- In Plato schema, verify the entries of the war file being deployed in the properties table. Check jdbcurl, schema name and port no. are correct.
- If required update the same with correct values.
- Restart the service.