IDMS API STARTUP fails with:
CEE3501S The module libjvm.so was not found.
From entry point JzosVM::initializeVMArgs() at compile unit offset +000
address 000000003B40717C.
CEE3DMP V2 R5.0: Condition processing resulted in the unhandled condition.
ASID: 0301 Job ID: JOB02532 Job name: JOB$API3 Step name: JAVAJVM PID:
Release : 19.0
Component : IDMS/DB
The cause of the failure was due to the missing leading "/" on the export JAVA_HOME= statement as "/" was missing from the export JAVA_HOME = usr/lpp/java/J8.0_64 statement.
Adding the leading "/" to the export statement corrected the problem.
Example:
export JAVA_HOME = usr/lpp/java/J8.0_64 ===> bad
export JAVA_HOME = /usr/lpp/java/J8.0_64 ===> good