<?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: CRASH DUMP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641317#M852273</link>
    <description>When a crash occurs, the operating system instantly stops running and passes control to the processor ROMs. The ROMs will write the contents of memory to the dump area(s) reported by lvlnboot -v.  Once the dump is complete, the machine will reboot and the rc scripts will run.&lt;BR /&gt;&lt;BR /&gt;One of the scripts is /sbin/init.d/savecore which is configured with /etc/rc.config.d/savecore. The two parameters that need to be checked are:&lt;BR /&gt;&lt;BR /&gt;SAVECORE=1&lt;BR /&gt;SAVECORE_DIR=/var/adm/crash&lt;BR /&gt;&lt;BR /&gt;These are the defaults and it is important to make sure /var/adm/crash has enough space for crash dumps. If not, it is a very good idea to create a separate logical volume for /var/adm/crash.&lt;BR /&gt;&lt;BR /&gt;Once this has been setup, and a crash occurs, the crash files will be in /var/adm/crash, a copy of vmunix as well as the crash file. During the time that the crash isa being copied by the savecore program, the panic string is stored in /etc/shutdownlog. That is where you can see the kernel's reason for the crash.&lt;BR /&gt;&lt;BR /&gt;Note however that typical crash messages are:&lt;BR /&gt;&lt;BR /&gt;data segmentation violation&lt;BR /&gt;freeing free frag&lt;BR /&gt;freeing free inode&lt;BR /&gt;HPMC&lt;BR /&gt;&lt;BR /&gt;and so on.  The first msg means that something in the thousands of lines of code made a mistake and an address is odd or does not have a 32bit boundary. mThe next two refer to things that can't happen to the filesystem but if they do, the system goes down hard. The HPMC error is almost always a hardware failure.&lt;BR /&gt;&lt;BR /&gt;Analysis of a crash dump is very complex, but there is a program that can help: q4 Use the man page to see if it can make sense of the crash dump for you.&lt;BR /&gt;</description>
    <pubDate>Wed, 09 Jan 2002 12:45:43 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2002-01-09T12:45:43Z</dc:date>
    <item>
      <title>CRASH DUMP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641314#M852270</link>
      <description>Where the Crash Dump in HPUX 10,20 is recorded by defect</description>
      <pubDate>Wed, 09 Jan 2002 12:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641314#M852270</guid>
      <dc:creator>MIGUEL CARABANO</dc:creator>
      <dc:date>2002-01-09T12:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: CRASH DUMP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641315#M852271</link>
      <description>I believe the default for dump on 10.20 is /etc/rc.config.d/savecore&lt;BR /&gt;&lt;BR /&gt;nancy</description>
      <pubDate>Wed, 09 Jan 2002 12:35:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641315#M852271</guid>
      <dc:creator>nancy rippey</dc:creator>
      <dc:date>2002-01-09T12:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: CRASH DUMP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641316#M852272</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are referring to where the crash dump is saved by the system upon booting up, it is stored in /var/adm/crash.&lt;BR /&gt;&lt;BR /&gt;For HP-UX 11.00, you will also want to check the tombstones residing in /var/tombstones.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong&lt;BR /&gt;Brainbench MVP for Unix Admin&lt;BR /&gt;&lt;A href="http://www.brainbench.com" target="_blank"&gt;http://www.brainbench.com&lt;/A&gt;</description>
      <pubDate>Wed, 09 Jan 2002 12:40:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641316#M852272</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-01-09T12:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: CRASH DUMP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641317#M852273</link>
      <description>When a crash occurs, the operating system instantly stops running and passes control to the processor ROMs. The ROMs will write the contents of memory to the dump area(s) reported by lvlnboot -v.  Once the dump is complete, the machine will reboot and the rc scripts will run.&lt;BR /&gt;&lt;BR /&gt;One of the scripts is /sbin/init.d/savecore which is configured with /etc/rc.config.d/savecore. The two parameters that need to be checked are:&lt;BR /&gt;&lt;BR /&gt;SAVECORE=1&lt;BR /&gt;SAVECORE_DIR=/var/adm/crash&lt;BR /&gt;&lt;BR /&gt;These are the defaults and it is important to make sure /var/adm/crash has enough space for crash dumps. If not, it is a very good idea to create a separate logical volume for /var/adm/crash.&lt;BR /&gt;&lt;BR /&gt;Once this has been setup, and a crash occurs, the crash files will be in /var/adm/crash, a copy of vmunix as well as the crash file. During the time that the crash isa being copied by the savecore program, the panic string is stored in /etc/shutdownlog. That is where you can see the kernel's reason for the crash.&lt;BR /&gt;&lt;BR /&gt;Note however that typical crash messages are:&lt;BR /&gt;&lt;BR /&gt;data segmentation violation&lt;BR /&gt;freeing free frag&lt;BR /&gt;freeing free inode&lt;BR /&gt;HPMC&lt;BR /&gt;&lt;BR /&gt;and so on.  The first msg means that something in the thousands of lines of code made a mistake and an address is odd or does not have a 32bit boundary. mThe next two refer to things that can't happen to the filesystem but if they do, the system goes down hard. The HPMC error is almost always a hardware failure.&lt;BR /&gt;&lt;BR /&gt;Analysis of a crash dump is very complex, but there is a program that can help: q4 Use the man page to see if it can make sense of the crash dump for you.&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Jan 2002 12:45:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/crash-dump/m-p/2641317#M852273</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2002-01-09T12:45:43Z</dc:date>
    </item>
  </channel>
</rss>

