In today’s article, I will talk about ins_emagent mk Oracle 11g error in Oracle Database Installation.
I’ve been writing a document about Oracle for a while, while installing Oracle database 11G r2 version on Oracle Linux, it gives an error in two files during installation.
Ins_emagent.Mk and Ins_ctx.Mk Errors
When you get the /ins_emagent.mk error, go to $ORACLE_HOME/sysman/lib/ins_emagent.mk and edit the following line.
1 |
$(MK_EMAGENT_NMECTL) |
Change the above line as is follows.
1 |
$(MK_EMAGENT_NMECTL) -lnnz11 |
When you get the ins_ctx.mk error go to the below line.
1 |
$(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK) |
and change it as is follow.
1 |
-static $(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK) |
When you complete the changes, problem will be fixed.