Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Single edition error

Status
Not open for further replies.
May 3, 2002
633
US
Has anyone had the following error, and how was it corrected.

/install.sh
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/java130/jre/bin/libfontmanager.a: A file or directory in the path name does not exist.
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1470)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1346)
at java.lang.Runtime.loadLibrary0(Runtime.java:766)
at java.lang.System.loadLibrary(System.java:849)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:57)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.font.NativeFontWrapper.<clinit>(NativeFontWrapper.java:42)
at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:63)
at java.lang.Class.forName1(Native Method)
at java.lang.Class.forName(Class.java:134)
at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:64)
at java.awt.Window.<init>(Window.java:191)
at java.awt.Window.<init>(Window.java:233)
at java.awt.Frame.<init>(Frame.java:318)
at java.awt.Frame.<init>(Frame.java:265)
at MainFrame.<init>(MainFrame.java:35)
at InstallerGUI.init(InstallerGUI.java:163)
at InstallerGUI.<init>(InstallerGUI.java:153)
at WASInstaller.install(WASInstaller.java:102)
at WASInstaller.main(WASInstaller.java:291)
 
The problem was the link for libC.a, libC128.a libC_r.a and libC128_r.a which had a link to /usr/lpp/xlC/lib/aix43 when the link needed to be to /usr/lpp/xlC/lib/aix51, the upgrade to 5.1 from 4.3.3 does not change the link for you, and I have had to change the link on 3 other node migrations.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top