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:
- Navigate to the
OFS_LLFP_PACK/DataModeldirectory in the installation kit. - Open
OFS_LLFP_Datamodel.xmland manually replace each invalid default value (-1) withN. - Save the updated XML.
- Use the modified XML during the model upload.
- Continue the installation by following the procedure specified for the 26ai database.
Note:
During installation with customized model, if you face the below Heap issueException 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//###