<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: java core dump analysis in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502979#M681002</link>
    <description>Hello Fedele!&lt;BR /&gt;&lt;BR /&gt;Seems gdb doesn't handle -core behaviour on cross debugging.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ok, basically you need the executable which generated the corefile. Since you cannot access the machine where the corefile is from, but you know it is a java corefile you need to install the correct JDK/JRE in order to get the "java" executable. Do you remember what JDK/JRE version was installed on the machine you can't access?&lt;BR /&gt;&lt;BR /&gt;If yes, install the corresponding version from&lt;BR /&gt;&lt;A href="https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJAVAHOME" target="_blank"&gt;https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJAVAHOME&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If not, try this to narrow down the possibilities:&lt;BR /&gt;&lt;BR /&gt;strings -n 3 core | more&lt;BR /&gt;&lt;BR /&gt;and look for a string like:&lt;BR /&gt;&lt;BR /&gt;PATH=...&lt;BR /&gt;&lt;BR /&gt;this could give you the path where the java executable was from if it was executed on command line.&lt;BR /&gt;&lt;BR /&gt;Furthermore, watch out for strings like, for example, ./java or /opt/java1.5/bin/java.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dennis: I owe you a response to your post :)</description>
    <pubDate>Fri, 25 Sep 2009 14:39:30 GMT</pubDate>
    <dc:creator>kobylka</dc:creator>
    <dc:date>2009-09-25T14:39:30Z</dc:date>
    <item>
      <title>java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502972#M680995</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I need to analyse core file generated by a Java application on a remote itanium machine:&lt;BR /&gt;&lt;BR /&gt;file core&lt;BR /&gt;core:           ELF-32 core file - IA64&lt;BR /&gt;&lt;BR /&gt;I have the core file but I cannot access the remote machine. Moreover I can access to an equivalent machine.&lt;BR /&gt;&lt;BR /&gt;How can I proceed?&lt;BR /&gt;Which tool can I use?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Giuseppe&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2009 14:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502972#M680995</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-24T14:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502973#M680996</link>
      <description>Shalom Guiseppe,&lt;BR /&gt;&lt;BR /&gt;You might get something to at least look at with the strings command.&lt;BR /&gt;&lt;BR /&gt;That might get you something to search by.&lt;BR /&gt;&lt;BR /&gt;As a precaution, I would insure you have recommended java patches and a current version from &lt;A href="http://www.hp.com/go/java" target="_blank"&gt;http://www.hp.com/go/java&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 24 Sep 2009 14:58:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502973#M680996</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-09-24T14:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502974#M680997</link>
      <description>Hello Fedele!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;On HP-UX you can use wdb or adb for debugging.&lt;BR /&gt;&lt;BR /&gt;WDB is HP's port of GDB for HP-UX, get it here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801?ciid=cb080f1bace021100f1bace02110275d6e10RCRD" target="_blank"&gt;http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801?ciid=cb080f1bace021100f1bace02110275d6e10RCRD&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To load the corefile and see where it crashed and why load the executable that produced the crash and the corefile like this:&lt;BR /&gt;&lt;BR /&gt;gdb /path/to/java /path/to/core&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;adb /path/to/java /path/to/core&lt;BR /&gt;&lt;BR /&gt;or, for graphical frontend to gdb,&lt;BR /&gt;&lt;BR /&gt;wdb /path/to/java /path/to/core&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for further information consult manpages (man gdb, man wdb, man adb) and online references:&lt;BR /&gt;&lt;BR /&gt;wdb - &lt;A href="http://docs.hp.com/en/oshpux11i.html#Debugging%20Tools" target="_blank"&gt;http://docs.hp.com/en/oshpux11i.html#Debugging%20Tools&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;gdb - &lt;A href="http://dirac.org/linux/gdb/" target="_blank"&gt;http://dirac.org/linux/gdb/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Beware that if you move the corefile from one system to another you will need Java installed on the target system too (same executable as on source system is strongly encouraged).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka</description>
      <pubDate>Thu, 24 Sep 2009 15:07:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502974#M680997</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-24T15:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502975#M680998</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;if I run the command:&lt;BR /&gt;&lt;BR /&gt;# /opt/langtools/bin/gdb64 /opt/java1.5/jre/bin/java /usr/Systems/HA_9.1.0_Master/core&lt;BR /&gt;&lt;BR /&gt;I obtain the following output:&lt;BR /&gt;&lt;BR /&gt;Detected 32-bit executable.&lt;BR /&gt;Invoking /usr/ccs/bin/gdb32.&lt;BR /&gt;HP gdb 5.9 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00&lt;BR /&gt;and target hppa1.1-hp-hpux11.00.&lt;BR /&gt;Copyright 1986 - 2001 Free Software Foundation, Inc.&lt;BR /&gt;Hewlett-Packard Wildebeest 5.9 (based on GDB) is covered by the&lt;BR /&gt;GNU General Public License. Type "show copying" to see the conditions to&lt;BR /&gt;change it and/or distribute copies. Type "show warranty" for warranty/support.&lt;BR /&gt;..&lt;BR /&gt;Core file is in different format from executable&lt;BR /&gt;To unload the executable use the "file" command with no argument&lt;BR /&gt;&lt;BR /&gt;(gdb)&lt;BR /&gt;&lt;BR /&gt;What does the last message means ("Core file is in different format from executable&lt;BR /&gt;To unload the executable use the "file" command with no argument") ?&lt;BR /&gt;&lt;BR /&gt;Can I proceed? And in which way?&lt;BR /&gt;&lt;BR /&gt;Giuseppe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2009 15:20:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502975#M680998</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-24T15:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502976#M680999</link>
      <description>Hello Fedele!&lt;BR /&gt;&lt;BR /&gt;Seems like you are on a PA-RISC based machine:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; HP gdb 5.9 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;trying to load a corefile from an Itanium executable:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Core file is in different format from executable&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1. First you need to get on an Itanium based machine with gdb/wdb installed.&lt;BR /&gt;&lt;BR /&gt;2. Then you need to find the executable for the corefile. If you are sure the corefile was generated by Java then run gdb with the java executable as you did in the last post (but on Itanium).&lt;BR /&gt;&lt;BR /&gt;Just to be sure the corefile was generated by the java executable try this:&lt;BR /&gt;&lt;BR /&gt;gdb -core /usr/Systems/HA_9.1.0_Master/core&lt;BR /&gt;&lt;BR /&gt;It should print a line like this:&lt;BR /&gt;&lt;BR /&gt;"Core generated by executable_name"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;When you found the needed executable it should load fine so you can do a backtrace.&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2009 17:39:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502976#M680999</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-24T17:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502977#M681000</link>
      <description>&amp;gt; I need to analyse core file generated by a Java&lt;BR /&gt;&lt;BR /&gt;What do you expect to find?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;/opt/langtools/bin/gdb64 /opt/java1.5/jre/bin/java&lt;BR /&gt;&lt;BR /&gt;This is the wrong java.  This PA one is the driver and immediately execs the real one in: &lt;BR /&gt;/opt/java1.5/jre/bin/IA64N/java &lt;BR /&gt;/opt/java1.5/jre/bin/IA64W/java&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Kobylka: Beware that if you move the corefile from one system to another you will need Java installed on the target system too (same executable as on source system is strongly encouraged).&lt;BR /&gt;&lt;BR /&gt;Don't even bother doing this unless you use the packcore command to copy ALL of the files.</description>
      <pubDate>Fri, 25 Sep 2009 10:32:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502977#M681000</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-25T10:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502978#M681001</link>
      <description>Hi Kobylka, hi Dennis,&lt;BR /&gt;&lt;BR /&gt;first of all I made a mistake: I had installed WDB PA-RISC version on an ITANIUM machine.&lt;BR /&gt;&lt;BR /&gt;Now I have installed WDB 5.9 + patch PHSS_38157 on my ITANIUM machine.&lt;BR /&gt;&lt;BR /&gt;If I try to check my core file as you have suggested, I obtain the following error:&lt;BR /&gt;&lt;BR /&gt;trhpli,sys,root #  gdb -core ./core&lt;BR /&gt;HP gdb 5.9 for HP Itanium (32 or 64 bit) and target HP-UX 11.2x.&lt;BR /&gt;Copyright 1986 - 2001 Free Software Foundation, Inc.&lt;BR /&gt;Hewlett-Packard Wildebeest 5.9 (based on GDB) is covered by the&lt;BR /&gt;GNU General Public License. Type "show copying" to see the conditions to&lt;BR /&gt;change it and/or distribute copies. Type "show warranty" for warranty/support.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;warning: Unknown symbols for './core'; use the 'symbol-file' command.&lt;BR /&gt;&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;No object file symbols.&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;&lt;BR /&gt;warning: Unable to read the load_info structure address from .&lt;BR /&gt;#0  0x0 in &lt;UNKNOWN_PROCEDURE&gt; ()&lt;BR /&gt;&lt;BR /&gt;How can I proceed?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Giuseppe&lt;/UNKNOWN_PROCEDURE&gt;</description>
      <pubDate>Fri, 25 Sep 2009 14:23:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502978#M681001</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-25T14:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502979#M681002</link>
      <description>Hello Fedele!&lt;BR /&gt;&lt;BR /&gt;Seems gdb doesn't handle -core behaviour on cross debugging.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ok, basically you need the executable which generated the corefile. Since you cannot access the machine where the corefile is from, but you know it is a java corefile you need to install the correct JDK/JRE in order to get the "java" executable. Do you remember what JDK/JRE version was installed on the machine you can't access?&lt;BR /&gt;&lt;BR /&gt;If yes, install the corresponding version from&lt;BR /&gt;&lt;A href="https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJAVAHOME" target="_blank"&gt;https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJAVAHOME&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If not, try this to narrow down the possibilities:&lt;BR /&gt;&lt;BR /&gt;strings -n 3 core | more&lt;BR /&gt;&lt;BR /&gt;and look for a string like:&lt;BR /&gt;&lt;BR /&gt;PATH=...&lt;BR /&gt;&lt;BR /&gt;this could give you the path where the java executable was from if it was executed on command line.&lt;BR /&gt;&lt;BR /&gt;Furthermore, watch out for strings like, for example, ./java or /opt/java1.5/bin/java.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dennis: I owe you a response to your post :)</description>
      <pubDate>Fri, 25 Sep 2009 14:39:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502979#M681002</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-25T14:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502980#M681003</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;by executing:&lt;BR /&gt;strings -n 3 ./core | grep java | grep bin&lt;BR /&gt;&lt;BR /&gt;I get:&lt;BR /&gt;&lt;BR /&gt;/opt/java1.5/jre/bin/IA64N/java&lt;BR /&gt;&lt;BR /&gt;that is the same installed on my machine:&lt;BR /&gt;&lt;BR /&gt;-r-xr-xr-x   1 bin        bin         236912 Mar  9  2009 /opt/java1.5/jre/bin/IA64N/java&lt;BR /&gt;&lt;BR /&gt;Giuseppe</description>
      <pubDate>Fri, 25 Sep 2009 14:48:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502980#M681003</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-25T14:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502981#M681004</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Try to load it into gdb:&lt;BR /&gt;&lt;BR /&gt;# gdb /opt/java1.5/jre/bin/IA64N/java /path/to/core&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The only problem I see is there are several versions of Java 1.5 (JDK or JRE):&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJDKJRE50" target="_blank"&gt;https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXJDKJRE50&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;if your local version doesn't match exactly your corefile's version then there could be errors running gdb.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka</description>
      <pubDate>Fri, 25 Sep 2009 15:11:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502981#M681004</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-25T15:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502982#M681005</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I met again the previous error&lt;BR /&gt;&lt;BR /&gt;gdb /opt/java1.5/jre/bin/IA64N/java /usr/Systems/HA_9.1.0_Master/core&lt;BR /&gt;HP gdb 5.9 for HP Itanium (32 or 64 bit) and target HP-UX 11.2x.&lt;BR /&gt;Copyright 1986 - 2001 Free Software Foundation, Inc.&lt;BR /&gt;Hewlett-Packard Wildebeest 5.9 (based on GDB) is covered by the&lt;BR /&gt;GNU General Public License. Type "show copying" to see the conditions to&lt;BR /&gt;change it and/or distribute copies. Type "show warranty" for warranty/support.&lt;BR /&gt;..&lt;BR /&gt;&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;Couldn't fetch registers from core file: File in wrong format&lt;BR /&gt;&lt;BR /&gt;warning: Unable to read the load_info structure address from .&lt;BR /&gt;#0  0x0 in &lt;UNKNOWN_PROCEDURE&gt; ()&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;QUESTION: since the remote core dump has lead the file system in a FULL condition, is it possible that the core file has not been correctly produced?&lt;BR /&gt;&lt;BR /&gt;Giuseppe&lt;BR /&gt;&lt;/UNKNOWN_PROCEDURE&gt;</description>
      <pubDate>Fri, 25 Sep 2009 15:17:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502982#M681005</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-25T15:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502983#M681006</link>
      <description>&amp;gt; QUESTION: since the remote core dump has lead the file system in a FULL condition, is it possible that the core file has not been correctly produced?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Insufficient disk space can lead to truncated corefiles, indeed.&lt;BR /&gt;&lt;BR /&gt;Check if core is truncated:&lt;BR /&gt;&lt;BR /&gt;# what core&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;# elfdump -o -S core&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please attach the output of both commands.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka</description>
      <pubDate>Fri, 25 Sep 2009 15:34:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502983#M681006</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-25T15:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502984#M681007</link>
      <description>&amp;gt;I had installed WDB PA-RISC version on an Integrity machine.&lt;BR /&gt;&lt;BR /&gt;This is fine, you need it for PA debugging.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Now I have installed WDB 5.9 + patch PHSS_38157 on my Integrity machine.&lt;BR /&gt;&lt;BR /&gt;Again, this is for PA, you need to download wdb 6.0 from &lt;A href="http://www.hp.com/go/wdb" target="_blank"&gt;http://www.hp.com/go/wdb&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;the file system in a FULL condition, is it possible that the core file has not been correctly produced?&lt;BR /&gt;&lt;BR /&gt;Yes, as Kobylka said.  You might as well remove that core file and wait until the next time.&lt;BR /&gt;How big was it?  You may have to increase the "ulimit -c" value.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;kobylka: basically you need the executable which generated the corefile.  Since you cannot access the machine where the corefile is from,&lt;BR /&gt;&lt;BR /&gt;Don't go there.  You need more than the executable.  If you can't access that machine, you need to give up now.&lt;BR /&gt;That's why you use packcore so you you copy ALL of the load modules.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 26 Sep 2009 03:29:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502984#M681007</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-26T03:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502985#M681008</link>
      <description>Hi  Kobylka,&lt;BR /&gt;&lt;BR /&gt;please see the commands output:&lt;BR /&gt;&lt;BR /&gt;what core&lt;BR /&gt;core:&lt;BR /&gt;        1.5.0.11-_07_nov_2007_17_04 (java) Built: 07/11/07-17:07 View: jinteg_h1.5.0.11.rc1b1&lt;BR /&gt;         default.syslogd $Date: 2006/01/23 20:01:10 $Revision: r11.23/2 PATCH_11.23 (PHCO_34253)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;trhpli,sys,root # elfdump -o -S core &lt;BR /&gt;&lt;BR /&gt;core:&lt;BR /&gt;&lt;BR /&gt;                *** Program Header ***&lt;BR /&gt;&lt;BR /&gt;Type     Offset   Vaddr    FSize    Memsz&lt;BR /&gt;&lt;BR /&gt;NULL     00000000 00000000 00000000 00000000&lt;BR /&gt;..................... (my comment: 111 lines)&lt;BR /&gt;NULL     00000000 00000000 00000000 00000000&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Sep 2009 09:44:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502985#M681008</guid>
      <dc:creator>Fedele Giuseppe</dc:creator>
      <dc:date>2009-09-28T09:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502986#M681009</link>
      <description>&amp;gt;elfdump -o -S core&lt;BR /&gt;&amp;gt;NULL 00000000 00000000 00000000 00000000&lt;BR /&gt;&lt;BR /&gt;Your core file has been truncated, remove it.</description>
      <pubDate>Mon, 28 Sep 2009 09:50:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502986#M681009</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-28T09:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502987#M681010</link>
      <description>Hello Fedele!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As Dennis already suggested, your corefile is truncated and thus cannot be used to load into a debugger.&lt;BR /&gt;&lt;BR /&gt;Problem might have been your disk filling up when core dump was generated or that your core size limit was too low.&lt;BR /&gt;&lt;BR /&gt;If your Java application erronously filled up the filesystem where it was running maybe you should try to make the application use this filesystem (maybe using absolute paths for creating files or whatever) and chdir to a different filesystem with enough space. This would leave the corefile in the chdir'ed directory rather than on the filled up filesystem (which would most probably truncate the corefile again).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Kobylka</description>
      <pubDate>Mon, 28 Sep 2009 11:26:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502987#M681010</guid>
      <dc:creator>kobylka</dc:creator>
      <dc:date>2009-09-28T11:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: java core dump analysis</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502988#M681011</link>
      <description>&amp;gt;kobylka: This would leave the corefile in the chdir'ed directory&lt;BR /&gt;&lt;BR /&gt;Since Fedele is on 11.31, he can also use the coreadm(1m) command to redirect core files somewhere else.</description>
      <pubDate>Mon, 28 Sep 2009 19:37:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/java-core-dump-analysis/m-p/4502988#M681011</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-28T19:37:00Z</dc:date>
    </item>
  </channel>
</rss>

