Oracle报错:“Error in invoking target ‘agent nmhs’ of makefile...”

Preface: You must pay attention to the errors reported by Oracle during the installation process, which determines whether you can complete the installation and use it later. I will continue to summarize some error reporting phenomena and share solutions here.
##Install Product 86%报错信息 :“Error in invoking target 'agent nmhs' of makefile...”

Insert image description here


solution:

Add parameters to link the libnnz11 library in the makefile.
Modify ORACLEHOME/sysman/lib/insemagent.mk and change ORACLE_HOME/sysman/lib/ins_emagent.mk toORACLEHOME/sysman/lib/insema g e n t . mk , change (MK_EMAGENT_NMECTL) to: $(MK_EMAGENT_NMECTL) -lnnz11

su - oracle
cd $ORACLE_HOME/sysman/lib
cp ins_emagent.mk ins_emagent.mk.bak

Insert image description here

vi ins_emagent.mk
找到/NMECTL  
$(MK_EMAGENT_NMECTL) -lnnz11  ##lnnz11 开头为字母l,最后两位是数字1,保存退出后再回到安装页面Retry即可顺利安装

Insert image description here

Retry即可顺利下一步安装

Insert image description here


Guess you like

Origin blog.csdn.net/lookboydfw/article/details/131422632