프린트 하기

실습환경

Oracle Linux 6.8 + Oracle 데이터베이스 11g R2 P4 


오류

./runInstaller의 java.lang 오류

[oracle@oracle Disk1]$ ./runInstaller

[oracle@oracle Disk1]$ Initializing Java Virtual Machine from /app/tmp/OraInstall2016-08-30_10-17-10AM/jre/bin/java. Please wait...

Exception in thread "main" java.lang.UnsatisfiedLinkError: /app/tmp/OraInstall2016-08-30_10-17-10AM/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory

at java.lang.ClassLoader$NativeLibrary.load(Native Method)

at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)

at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1477)

at java.lang.Runtime.loadLibrary0(Runtime.java:788)

at java.lang.System.loadLibrary(System.java:834)

at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)

at java.security.AccessController.doPrivileged(Native Method)

at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)

at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)

at java.awt.Component.<clinit>(Component.java:506)

at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:593)


해결방법

libXp-1.0.0-8.i386.rpm(이나 그 이상버전) 이 설치되어 있는지 확인한다.

확인 방법은 rpm -qa | grep libXp 로 확인할 수 있다.

설치되어 있지 않은 경우 설치해야 한다.

OEL5.8의 경우 /media/OL5.8 x86_64 dvd 20120229/Server/ 에서

rpm -Uvh libXp-1.0.0-8.1.el5.*

해주면 설치가 된다.

참고 : http://h391106.tistory.com/187