<?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: CORE in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965381#M119243</link>
    <description>Usually coredumping is caused by incorrect software behavior - in your case maybe software is trying to allocate some memory, but do not track that allocation function returns 'no memory available' and tries to write to 'null' area - causing coredumping ('memory page protection fault' in windows...).&lt;BR /&gt;If there's a hardware issue, server crashdumps and reboots&lt;BR /&gt;Eugeny</description>
    <pubDate>Mon, 05 May 2003 04:21:52 GMT</pubDate>
    <dc:creator>Eugeny Brychkov</dc:creator>
    <dc:date>2003-05-05T04:21:52Z</dc:date>
    <item>
      <title>CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965380#M119242</link>
      <description>What does it mean when your server is creating a file called "core"? Is this an indication of a hardware related problem? I'm also experiencing an error that says "There is not enough memory" from time to time. Is this related to this "core" thing?</description>
      <pubDate>Mon, 05 May 2003 04:11:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965380#M119242</guid>
      <dc:creator>Reuben M. Ordonio</dc:creator>
      <dc:date>2003-05-05T04:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965381#M119243</link>
      <description>Usually coredumping is caused by incorrect software behavior - in your case maybe software is trying to allocate some memory, but do not track that allocation function returns 'no memory available' and tries to write to 'null' area - causing coredumping ('memory page protection fault' in windows...).&lt;BR /&gt;If there's a hardware issue, server crashdumps and reboots&lt;BR /&gt;Eugeny</description>
      <pubDate>Mon, 05 May 2003 04:21:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965381#M119243</guid>
      <dc:creator>Eugeny Brychkov</dc:creator>
      <dc:date>2003-05-05T04:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965382#M119244</link>
      <description>&lt;BR /&gt;Basically a core dump from an application is what was in memory as a page fault for a particular function or program. &lt;BR /&gt;You can find where it comes from by:&lt;BR /&gt;&lt;BR /&gt;$ what core&lt;BR /&gt;&lt;BR /&gt;Hardware problems do not dump core, they may issue a panic and reboot your system.</description>
      <pubDate>Mon, 05 May 2003 04:26:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965382#M119244</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-05-05T04:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965383#M119245</link>
      <description>Hi,&lt;BR /&gt;This problem is related to resources on the server. When a particular application is trying to allocate some memory using systems calls like "malloc" or "calloc" it is facing a problem. When this system call fails the application will dump core. &lt;BR /&gt;Secondly, such problem may occur because of wrong way of allocating memory in the programs. Some programs go on allocating memory but never release it, this is called as "Memory leakage", a typical solution would be to reboot the server to release the memory and tuning the application code to avoid any future incidents.&lt;BR /&gt;&lt;BR /&gt;Rgds..&lt;BR /&gt;Suhas</description>
      <pubDate>Mon, 05 May 2003 04:30:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965383#M119245</guid>
      <dc:creator>Suhas_2</dc:creator>
      <dc:date>2003-05-05T04:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965384#M119246</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;file core&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Will tell you what happened&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may need to debug it or tune your system&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please post the output.&lt;BR /&gt;&lt;BR /&gt;Look in /var/adm/syslog/syslog.log at the same time as the core.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                Steve Steel</description>
      <pubDate>Mon, 05 May 2003 09:06:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965384#M119246</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2003-05-05T09:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965385#M119247</link>
      <description>You can use the file command to determine what process aborted (and thus created the core file).&lt;BR /&gt;&lt;BR /&gt;You can also use the strings command to see what's in the core file:&lt;BR /&gt;&lt;BR /&gt;strings core |pg&lt;BR /&gt;&lt;BR /&gt;Common causes include hardware problems, telnet or socket sessions dropping without properly shutting down the associated processes on the HP side, and there's a couple of SAM bugs that will dump core if you aren't up-to-date with your patches.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;mark</description>
      <pubDate>Mon, 05 May 2003 11:33:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965385#M119247</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2003-05-05T11:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965386#M119248</link>
      <description>I agree with running a the "file" command on the core to see which binary is creating it. Also, examine the size of the core. Compare it to the value of maxdsize. If they are around the same size, the exec is reaching the memory limit in your kernel. Bump up the kernel param and re-run - but be aware that if the process has a memory leak it will get the error again - watch the memory usage with ps.</description>
      <pubDate>Wed, 07 May 2003 13:01:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965386#M119248</guid>
      <dc:creator>Michael Murphy_2</dc:creator>
      <dc:date>2003-05-07T13:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965387#M119249</link>
      <description>you can also analyse the core dump&lt;BR /&gt;&lt;BR /&gt;#strings core | more&lt;BR /&gt;&lt;BR /&gt;this would give you a closer idea og what cuased the core dump. don't try to go way deep into the file. usually the answer is within the 1st couple of lines.&lt;BR /&gt;&lt;BR /&gt;peace&lt;BR /&gt;Donny</description>
      <pubDate>Wed, 07 May 2003 15:11:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965387#M119249</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2003-05-07T15:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: CORE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965388#M119250</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;Check this post. Paula gives a very nice explanation about how to check a core file.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4f1f9607df6ed711abdc0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4f1f9607df6ed711abdc0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Dario</description>
      <pubDate>Wed, 07 May 2003 16:11:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core/m-p/2965388#M119250</guid>
      <dc:creator>Dario_1</dc:creator>
      <dc:date>2003-05-07T16:11:24Z</dc:date>
    </item>
  </channel>
</rss>

