JDK-6542512 : Plugin for JDK 6u2 b01 doesn't work on RHEL 5 x86
  • Type: Enhancement
  • Component: deploy
  • Sub-Component: plugin
  • Affected Version: 6u2
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: linux,linux_redhat_4.0
  • CPU: x86
  • Submitted: 2007-04-04
  • Updated: 2011-01-19
  • Resolved: 2007-06-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7
6u4 b01Fixed 7Fixed
Related Reports
Duplicate :  
Description
Java Plugin  for JDK 6 u2 b01 doesn't work on RHEL 5 x86 with the mesage:

java.lang.UnsatisfiedLinkError: /export/JDK/jdk1.6.0_02/jre/lib/i386/libdeploy.s
o: libstdc++.so.5: 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:1751)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
        at java.lang.Runtime.load0(Runtime.java:770)
        at java.lang.System.load(System.java:1005)
        at com.sun.deploy.config.UnixConfig.loadLibDeploy(UnixConfig.java:38)
        at com.sun.deploy.config.UnixConfig.<clinit>(UnixConfig.java:26)
        at com.sun.deploy.config.ConfigFactory.newInstance(ConfigFactory.java:11
)
        at com.sun.deploy.config.Config.getInstance(Config.java:662)
        at com.sun.deploy.config.Config.<clinit>(Config.java:678)
        at sun.plugin.util.PluginConfig.<init>(PluginConfig.java:31)
        at sun.plugin.util.UserProfile.<clinit>(UserProfile.java:24)
        at sun.plugin.AppletViewer.loadPropertiesFiles(AppletViewer.java:144)
        at sun.plugin.JavaRunTime.initEnvironment(JavaRunTime.java:84)
        at sun.plugin.navig.motif.Plugin.doit(Plugin.java:131)
        at sun.plugin.navig.motif.Plugin.start(Plugin.java:104)
Exception in thread "SysExecutionThead" java.lang.NoClassDefFoundError: Could no
t initialize class com.sun.deploy.config.Config
        at com.sun.deploy.ui.DialogTemplate.deriveParent(DialogTemplate.java:154
1)


the code problem is:

ldd libdeploy.so 
        linux-gate.so.1 =>  (0x006e8000)
        libc.so.6 => /lib/libc.so.6 (0x00d58000)
        libstdc++.so.5 => not found
        libm.so.6 => /lib/libm.so.6 (0x00613000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00af2000)
        /lib/ld-linux.so.2 (0x4dd10000)


Plugin still works on RHEL 4

Comments
SUGGESTED FIX static link to libstdc++.a for now http://web-east.east/deployment/www/webrevs/ngthomas/6542512/webrev/
19-05-2007

EVALUATION RHEL 5 is not an officially supported platform: http://java.sun.com/javase/6/webnotes/install/system-configurations.html Same problem exists on Fedora too. Problem is libdeploy.so in Java 6 or above depends on libstdc++.so.5; and libstdc++.so.5 is not available by default on Fedora. In Java 5 or earlier, libdeploy.so does not have any c++ code. So there is no dependency on libstdc++. In Java 6, we added c++ code to libdeploy.so, for the performance timing work: 6372091: Add performance monitoring to Plug-in on Windows. Seems like many people run into similar problems on Fedora, including Intel: http://www.intel.com/support/performancetools/c/linux/sb/CS-023486.htm Currently, Fedora is not a supported platform on Java 6: http://java.sun.com/javase/6/webnotes/install/system-configurations.html If we decide we need to run on Fedora by default, we should either document this problem; or statically link the c++ lib; or we can remove the dependency on libstdc++.so.5.
05-04-2007