Box popped up: Error in invoking target install of makefile /home/oracle/product/ctx/lib/ins_ctx.mk Press 'Help' for more information. Press 'Retry' to try again. Press 'Ignore' to ignore this error and go on. Press 'Cancel' to stop this installation. Google Search: error ins_ctx.mk yielded this page: http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=64844 which read: This is solved at http://www.idevelopment.info/data/DBA_tips/Linux/LINUX_5.shtml Errors during the Relink Phase of the Install During the "Link Phase" of the install, you will get an error while trying to make/install CTX. (The same issue exists in 9.0.1 on RedHat Linux). The following errors will exist in $ORACLE_HOME/install/make.log /lib/libdl.so.2: undefined reference to `__ctype_b_loc@GLIBC_2.3' /lib/libdl.so.2: undefined reference to `_dl_addr@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_open@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_close@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_sym@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_vsym@GLIBC_PRIVATE' collect2: ld returned 1 exit status make: *** [ctxhx] Error 1 This error occurs when the following is executed: /usr/bin/make -f ins_ctx.mk install ORACLE_HOME=/u01/app/oracle/product/9.2.0 Solution The solution is to edit the file $ORACLE_HOME/ctx/lib/env_ctx.mk and go to "INSO_LINK =", add a "$(LDLIBFLAG)dl" to the line and save it. Here is the full line with the added "$(LDLIBFLAG)dl" flag: INSO_LINK = -L$(CTXLIB) $(LDLIBFLAG)m $(LDLIBFLAG)dl $(LDLIBFLAG)sc_ca $(LDLIBFLAG)sc_fa $(LDLIBFLAG)sc_ex $(LDLIBFLAG)sc_da $(LDLIBFLAG)sc_ut $(LDLIBFLAG)sc_ch $(LDLIBFLAG)sc_fi $(LLIBCTXHX) $(LDLIBFLAG)c -Wl,- rpath,$(CTXHOME)lib $(CORELIBS) $(COMPEOBJS) ------- Additional Comment #5 From mosl31@yahoo.com on 2002-11-19 22:39 ------- This is solved at http://www.idevelopment.info/data/DBA_tips/Linux/LINUX_5.shtml Errors during the Relink Phase of the Install During the "Link Phase" of the install, you will get an error while trying to make/install CTX. (The same issue exists in 9.0.1 on RedHat Linux). The following errors will exist in $ORACLE_HOME/install/make.log /lib/libdl.so.2: undefined reference to `__ctype_b_loc@GLIBC_2.3' /lib/libdl.so.2: undefined reference to `_dl_addr@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_open@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_close@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_sym@GLIBC_PRIVATE' /lib/libdl.so.2: undefined reference to `_dl_vsym@GLIBC_PRIVATE' collect2: ld returned 1 exit status make: *** [ctxhx] Error 1 This error occurs when the following is executed: /usr/bin/make -f ins_ctx.mk install ORACLE_HOME=/u01/app/oracle/product/9.2.0 Solution The solution is to edit the file $ORACLE_HOME/ctx/lib/env_ctx.mk and go to "INSO_LINK =", add a "$(LDLIBFLAG)dl" to the line and save it. Here is the full line with the added "$(LDLIBFLAG)dl" flag: INSO_LINK = -L$(CTXLIB) $(LDLIBFLAG)m $(LDLIBFLAG)dl $(LDLIBFLAG)sc_ca $(LDLIBFLAG)sc_fa $(LDLIBFLAG)sc_ex $(LDLIBFLAG)sc_da $(LDLIBFLAG)sc_ut $(LDLIBFLAG)sc_ch $(LDLIBFLAG)sc_fi $(LLIBCTXHX) $(LDLIBFLAG)c -Wl,- rpath,$(CTXHOME)lib $(CORELIBS) $(COMPEOBJS) The following information is available in: /home/oracle/product/Apache/Apache/setupinfo.txt ----------------------------------------- The HTTP Server can be accessed using the following URLs: Non SSL Mode: http://amrit:7777 SSL mode (executed at install time): http://amrit:7778 https://amrit:4443 CREATE USER GUSrw IDENTIFIED BY xxxxxxxx DEFAULT TABLESPACE users QUOTA 100M ON users; CREATE USER GUSdevReadOnly IDENTIFIED BY xxxxxxxx DEFAULT TABLESPACE users QUOTA 100M ON users; GRANT CREATE SESSION TO GUSrw; GRANT CREATE TABLE TO GUSrw; GRANT CREATE VIEW TO GUSrw; GRANT CREATE SEQUENCE TO GUSrw; GRANT CREATE TRIGGER TO GUSrw; GRANT CREATE SYNONYM TO GUSrw; GRANT SELECT ANY TABLE TO GUSrw; GRANT INSERT ANY TABLE TO GUSrw; GRANT UPDATE ANY TABLE TO GUSrw; GRANT DELETE ANY TABLE TO GUSrw; GRANT CREATE SESSION TO GUSdevReadOnly; GRANT SELECT ANY TABLE TO GUSdevReadOnly; GRANT SELECT ANY TABLE TO GUSdevReadOnly; create tablespace gus_core datafile '/oracle/gus/gus_core.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_sres datafile '/oracle/gus/gus_sres.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_dots datafile '/oracle/gus/gus_dots.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_tess datafile '/oracle/gus/gus_tess.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_rad3 datafile '/oracle/gus/gus_rad3.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_core_idx datafile '/oracle/gus/gus_core_idx.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_sres_idx datafile '/oracle/gus/gus_sres_idx.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_dots_idx datafile '/oracle/gus/gus_dots_idx.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_tess_idx datafile '/oracle/gus/gus_tess_idx.dbf' size 200M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_rad3_idx datafile '/oracle/gus/gus_rad3_idx.dbf' size 200M default storage (initial 4M next 1M pctincrease 0);