Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Migrating from 8.1.6 to 8.1.7
Vikas,
> I get an error when migrating from 8.1.6 to 8.1.7 on a Sun box.
> After editing the /var/opt/oracle for the fbs to the new Oracle Home - when
> I attempt to start svrmgrl - i get an error below:
> ld.so.1: svrmgrl: fatal: relocation error: file svrmgrl: symbol
> kgsmp789_compat_: referenced symbol not found
> Killed
When you have unreferenced symbols the first thing to do usually is to locate them. Here is what it gives on my 8.1.7 :
$ cd $ORACLE_HOME/lib
$ nm -A *.a *.so | grep kgsmp789_compat_ | more
nm: libordim8.so: no symbols
libclient8.a:kgus.o: U kgsmp789_compat_ libclient8.a:kgum.o: U kgsmp789_compat_ libclient8.a:kgupi.o: U kgsmp789_compat_ libclient8.a:kguplt.o: U kgsmp789_compat_ libclntst8.a:kgsm.o:00000028 R kgsmp789_compat_ libclntst8.a:kgum.o: U kgsmp789_compat_ libclntst8.a:kgupi.o: U kgsmp789_compat_ libclntst8.a:kguplt.o: U kgsmp789_compat_ libclntst8.a:kgus.o: U kgsmp789_compat_ libgeneric8.a:kgsm.o:00000028 R kgsmp789_compat_ libgeneric8.a:kgsn.o: U kgsmp789_compat_ libserver8.a:kcbz.o: U kgsmp789_compat_ libserver8.a:kcbb.o: U kgsmp789_compat_ libserver8.a:ksl.o: U kgsmp789_compat_ libserver8.a:ksu.o: U kgsmp789_compat_ libserver8.a:ksm.o: U kgsmp789_compat_libclntsh.so:0052be80 R kgsmp789_compat_
This routine is referenced in a number of libraries and apparently you can find it defined in three places, libgeneric8.a and the dynamic two-task and static single task versions of the client library. Perhaps your client library has not been properly built. Try
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk client_sharedlib
HTH,
Stephane Faroult
Oriole Corporation
Voice: +44 (0) 7050-696-269
Fax: +44 (0) 7050-696-449
Performance Tools & Free Scripts
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Oriole Support INET: sfaroult_at_oriole.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Jun 14 2001 - 16:19:13 CDT
![]() |
![]() |