ORACLE/TroubleShooting2022. 4. 11. 09:48
반응형
증상
Error in invoking target 'agent 'nmhs' of makefile
 
vi $ORACLE_HOME/install/make.log
 
make[1]: Leaving directory `/oracle/product/11.2.0/sysman/lib'
make[1]: *** [/oracle/product/11.2.0/sysman/lib/emdctl] Error 1
make: *** [emdctl] Error 2

ORACLELINUX 7 에서 발생 11.2.0.4 DB 엔진 설치시 오류 발생

ORACLELINUX 7,SUSE12SP1, SUSE12SP2, RHEL7 , CentOS등등 에서 발생
 

 

 
원인
ins_emagent.mk 링크에 오류가 있음
 
 
해결책
 
vi $ORACLE_HOME/sysman/lib/ins_emagent.mk
#===========================
#  emdctl
#===========================

$(SYSMANBIN)emdctl:
        $(MK_EMAGENT_NMECTL)
 
해당 부분(173 번째 줄)을
 
#===========================
#  emdctl
#===========================

$(SYSMANBIN)emdctl:
        $(MK_EMAGENT_NMECTL) -lnnz11
 
으로 수정 후 오류가 난 설치창에서 retry를 눌러 진행하면 된다.
반응형
Posted by [PineTree]