Case 2: Installation Without an Erwin License

If an Erwin license is not available, manually modify the Repository XML included in the installation kit.

Perform the following steps:
  1. Navigate to the OFS_LLFP_PACK/DataModel directory in the installation kit.
  2. Open OFS_LLFP_Datamodel.xml and manually replace each invalid default value (-1) with N.
  3. Save the updated XML.
  4. Use the modified XML during the model upload.
  5. Continue the installation by following the procedure specified for the 26ai database.

Note:

During installation with customized model, if you face the below Heap issue

Exception occured in File: <ValidityCheck.java> Class: <com.ofs.silentIns.common.ValidityCheck> Method: <main> Line: <85> java.lang.NullPointerException at com.ofs.silentIns.common.UtilityFunctions.CheckHeapSize(UtilityFunctions.java:278)

Add these lines in the beginning of setup.sh and retrigger the installation

##MANUALLY ADDING ENTRIES TO .PROFILE//###
X_ARGS_APP="-Xms2048m -Xmx20000m -XX:+UseAdaptiveSizePolicy -XX:MaxPermSize=1024M -XX:+UseParallelOldGC -XX:+DisableExplicitGC"
export X_ARGS_APP
X_ARGS_RNEXE="-Xms1g -Xmx1g -XX:+UseAdaptiveSizePolicy -XX:MaxPermSize=512M -XX:+UseParallelOldGC -XX:+DisableExplicitGC"
export X_ARGS_RNEXE
X_ARGS_RLEXE="-Xms1g -Xmx1g -XX:+UseAdaptiveSizePolicy -XX:MaxPermSize=512M -XX:+UseParallelOldGC -XX:+DisableExplicitGC"
export X_ARGS_RLEXE
## END OF MANUALLY ADDING ENTRIES TO .PROFILE//###