Oracle 9i on AIX 5L (5200-04) [message #92555] |
Wed, 15 September 2004 08:51 |
Greg
Messages: 35 Registered: July 2000
|
Member |
|
|
Hello,
I'm trying to install Oracle 9i on an AIX 5L (5200-04) 64 bits. I've followed the instructions and think I fullfill the prerequisites I've found in the installation guide.
I've run the rootpre.sh as root. That worked fine.
But when I've tried to run the "runInstaller" as oracle user, the java crashes. Here's what I get:
Initializing Java Virtual Machine from /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/java. Please wait...
Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/libawt.a: load ENOENT on shared library(s) /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/libawt.a libX11.a
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1796)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1672)
at java.lang.Runtime.loadLibrary0(Runtime.java:780)
at java.lang.System.loadLibrary(System.java:865)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:66)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:63)
at sun.awt.DebugHelper.<clinit>(DebugHelper.java:38)
at java.awt.Component.<clinit>(Component.java:384)
Can someone help me?
Thank you in advance,
Greg.
|
|
|
|
Re: Oracle 9i on AIX 5L (5200-04) [message #92665 is a reply to message #92555] |
Thu, 11 November 2004 00:21 |
Steve Bates
Messages: 3 Registered: November 2004
|
Junior Member |
|
|
The error :
-------------------------------------------------
Initializing Java Virtual Machine from /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/java. Please wait...
Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/libawt.a: load ENOENT on shared library(s) /tmp/OraInstall2004-09-15_06-47-59PM/jre/bin/libawt.a libX11.a
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1796)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1672)
at java.lang.Runtime.loadLibrary0(Runtime.java:780)
at java.lang.System.loadLibrary(System.java:865)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:66)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:63)
at sun.awt.DebugHelper.(DebugHelper.java:38)
at java.awt.Component.(Component.java:384)
-------------------------------------------------
Is resolved by installing the Java runtime from the AIX 5.2 installation media, and then doing an update to patch to the 5200-04 releaase.
Before running the installer update your path so Java is on on the PATH:
PATH=$PATH:/usr/java131/jre/bin:/usr/java131/bin
export PATH
|
|
|
|
|