This is a discussion on Oracle 10g Upgrade Issue within the Oracle Database forums, part of the Database Server Software category; --> I installed the 10g software. Then, I changed all my environment variables to point to the new 10g Oracle ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I installed the 10g software. Then, I changed all my environment variables to point to the new 10g Oracle Home directory. When I run the DBUA, I get some weird UNSATISFIEDLINKERROR from the DBUA. Anyone know why this is happening? I need to run the 10g DBUA, not the 9i version......... Regards, ExecMan |
| |||
| On 9 Feb 2006 11:22:37 -0800, "ExecMan" <johndoe@mtekusa.com> wrote: > >I installed the 10g software. Then, I changed all my environment >variables to point to the new 10g Oracle Home directory. > >When I run the DBUA, I get some weird UNSATISFIEDLINKERROR from the >DBUA. > >Anyone know why this is happening? I need to run the 10g DBUA, not the >9i version......... > >Regards, > >ExecMan You are providing insufficient information. First of all you need to post the platform. Secondly, you need to post the *exact error message*, not 'some weird UNSATISFIEDLINKERROR'. This is required in order to get any useful replies. -- Sybrand Bakker, Senior Oracle DBA |
| |||
| Our platform is AIX 5L 64 Maintenance Release 8. There are SEVERAL error messages. I'll just post the entire screen: java.lang.UnsatisfiedLinkError: /ora2/app/oracle/product/10g/lib/libOsUtils.so: load ENOEXEC on shared library(s) /ora2/app/oracle/product/10g/lib/libOsUtils.so at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(ClassLoader.jav a:2120) at java.lang.ClassLoader.loadLibrary(ClassLoader.java :1998) at java.lang.Runtime.loadLibrary0(Runtime.java:824) at java.lang.System.loadLibrary(System.java:908) at oracle.sysman.assistants.util.OsUtilsUnix.<init>(O sUtilsUnix.java:672) at sun.reflect.NativeConstructorAccessorImpl.newInsta nce0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInsta nce(NativeConstructorAccessorImpl.java:80) at sun.reflect.DelegatingConstructorAccessorImpl.newI nstance(DelegatingConstructorAccessorImpl.java:44) at java.lang.reflect.Constructor.newInstance(Construc tor.java(Compiled Code)) at java.lang.Class.newInstance3(Class.java:367) at java.lang.Class.newInstance(Class.java:305) at oracle.sysman.assistants.util.OsUtilsBase.construc tInstance(OsUtilsBase.java:1416) at oracle.sysman.assistants.util.OsUtilsBase.getOsUti ls(OsUtilsBase.java:144) at oracle.sysman.assistants.util.attributes.InitParam Attributes.initialize(InitParamAttributes.java:498 ) at oracle.sysman.assistants.util.attributes.InitParam Attributes.<init>(InitParamAttributes.java:470) at oracle.sysman.assistants.util.step.StepContext.<in it>(StepContext.java:247) at oracle.sysman.assistants.dbma.backend.CompManager. <init>(CompManager.java:580) at oracle.sysman.assistants.dbma.ui.UICompManager.<in it>(UICompManager.java:152) at oracle.sysman.assistants.dbma.Dbma.getCompManager( Dbma.java:154) at oracle.sysman.assistants.dbma.Dbma.execute(Dbma.ja va:98) at oracle.sysman.assistants.dbma.Dbma.statusMain(Dbma .java:199) at oracle.sysman.assistants.dbma.Dbma.main(Dbma.java: 180) Regards. |
| |||
| On 9 Feb 2006 11:59:48 -0800, "ExecMan" <johndoe@mtekusa.com> wrote: > >Our platform is AIX 5L 64 Maintenance Release 8. > >There are SEVERAL error messages. I'll just post the entire screen: > >java.lang.UnsatisfiedLinkError: >/ora2/app/oracle/product/10g/lib/libOsUtils.so: > load ENOEXEC on shared library(s) >/ora2/app/oracle/product/10g/lib/libOsUtils.so > at java.lang.ClassLoader$NativeLibrary.load(Native Method) > at java.lang.ClassLoader.loadLibrary0(ClassLoader.jav a:2120) > at java.lang.ClassLoader.loadLibrary(ClassLoader.java :1998) > at java.lang.Runtime.loadLibrary0(Runtime.java:824) > at java.lang.System.loadLibrary(System.java:908) > at >oracle.sysman.assistants.util.OsUtilsUnix.<init>( OsUtilsUnix.java:672) > at >sun.reflect.NativeConstructorAccessorImpl.newInst ance0(Native Method) > at >sun.reflect.NativeConstructorAccessorImpl.newInst ance(NativeConstructorAccessorImpl.java:80) > at >sun.reflect.DelegatingConstructorAccessorImpl.new Instance(DelegatingConstructorAccessorImpl.java:44 ) > at >java.lang.reflect.Constructor.newInstance(Constru ctor.java(Compiled >Code)) > at java.lang.Class.newInstance3(Class.java:367) > at java.lang.Class.newInstance(Class.java:305) > at >oracle.sysman.assistants.util.OsUtilsBase.constru ctInstance(OsUtilsBase.java:1416) > at >oracle.sysman.assistants.util.OsUtilsBase.getOsUt ils(OsUtilsBase.java:144) > at >oracle.sysman.assistants.util.attributes.InitPara mAttributes.initialize(InitParamAttributes.java:49 8) > at >oracle.sysman.assistants.util.attributes.InitPara mAttributes.<init>(InitParamAttributes.java:470) > at >oracle.sysman.assistants.util.step.StepContext.<i nit>(StepContext.java:247) > at >oracle.sysman.assistants.dbma.backend.CompManager .<init>(CompManager.java:580) > at >oracle.sysman.assistants.dbma.ui.UICompManager.<i nit>(UICompManager.java:152) > at >oracle.sysman.assistants.dbma.Dbma.getCompManager (Dbma.java:154) > at oracle.sysman.assistants.dbma.Dbma.execute(Dbma.ja va:98) > at oracle.sysman.assistants.dbma.Dbma.statusMain(Dbma .java:199) > at oracle.sysman.assistants.dbma.Dbma.main(Dbma.java: 180) > >Regards. Ok, that is at least more descriptive. The problem is in the >/ora2/app/oracle/product/10g/lib/libOsUtils.so: code, which refers to OS modules, which a) can't be found b) don't exist in the specific version of your OS. One common cause for errors like this one is an incorrect LD_LIBRARY_PATH environment variable in oracle's profile. If that isn't the culprit, you could use the nm command (with, IIRC, the -a switch), to dump to stdout, which routines this library is calling. If that doesn't provide any clue, you would better submit a service request. -- Sybrand Bakker, Senior Oracle DBA |
| |||
| On 10 Feb 2006 05:47:20 -0800, "ExecMan" <johndoe@mtekusa.com> wrote: > >Well, after installing the Oracle 10g software, should we change ALL of >our path settings and environment variables to point to the new 10g >home directory?? No, you should use oraenv (provided with every release and copied to your local bin directory by rootpre.sh) to set the environment variables correctly. As you obviously don't have different versions of the O/S for different versions of Oracle LD_LIBRARY_PATH can be set correctly in this script only once, and Oracle already indicates the proper place for additions /modifications in the script. -- Sybrand Bakker, Senior Oracle DBA |
| |||
| On Thu, 09 Feb 2006 11:59:48 -0800, ExecMan wrote: > oracle.sysman.assistants.util.attributes.InitParam Attributes.initialize(InitParamAttributes.java:498 ) > at > oracle.sysman.assistants.util.attributes.InitParam Attributes.<init>(InitParamAttributes.java:470) > at > oracle.sysman.assistants.util.step.StepContext.<in it>(StepContext.java:247) > at > oracle.sysman.assistants.dbma.backend.CompManager. <init>(CompManager.java:580) > at > oracle.sysman.assistants.dbma.ui.UICompManager.<in it>(UICompManager.java:152) Just one question: hopefully, you are not trying to install Oracle from a character mode terminal, like telnet or putty? This looks like your OUI (Oracle Untested Infuriator) is unable to establish connection with your screen manager, which should be X11. You should also have Motif 2.1 installed. -- http://www.mgogala.com |
| ||||
| ExecMan <johndoe@mtekusa.com> wrote: > Our platform is AIX 5L 64 Maintenance Release 8. > > There are SEVERAL error messages. I'll just post the entire screen: > > java.lang.UnsatisfiedLinkError: > /ora2/app/oracle/product/10g/lib/libOsUtils.so: > load ENOEXEC on shared library(s) What version of Oracle 10g are you running? It might be problem 293667.1 - check on Metalink. Try to put /ora2/app/oracle/product/10g/lib32 instead of /ora2/app/oracle/product/10g/lib into your LIBPATH. Yours, Laurenz Albe |
| Thread Tools | |
| Display Modes | |
|
|