Description:
During configuration of forms and report, component of report configuration failed with the below Error.
Step Executing: opmnctl startproc ias-component=RptSvr_xxxxxx_asinst_1 failed
Configuration Action ‘Executing: opmnctl startproc ias component=RptSvr_xxxxxx_asinst_1’ has failed. Please check logs for details.
Step Executing: opmnctl startproc ias-component=RptSvr_xxxxxx_asinst_1 failed
Cause:
Missing of symbolic link for libXm.so.3.
Solution:
- cd /usr/lib64/
Run the below command
ln -s /usr/lib64/libXm.so.4.0.4 libXm.so.3
- Append /usr/lib64 to all LD_LIBRARY_PATH referenced in $ORACLE_HOME/bin/config.sh
- vi config.sh
if [ x${LD_LIBRARY_PATH} != x ];
then
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH:/usr/lib64
export LD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib64
export LD_LIBRARY_PATH
- click retry configuration
Recent Posts