<?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: Dealing with core dump creation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853893#M805166</link>
    <description>I like the idea.&lt;BR /&gt;&lt;BR /&gt;You can't find out 'why' the core file happened if you can't find the core file.&lt;BR /&gt;&lt;BR /&gt;Note that on Itanium machines, the Aries product (emulator) saves cores with a prefix on the name, so a simple&lt;BR /&gt;&lt;BR /&gt;"find / -name core" will not find these.</description>
    <pubDate>Fri, 23 Apr 2004 11:09:44 GMT</pubDate>
    <dc:creator>Scot Bean</dc:creator>
    <dc:date>2004-04-23T11:09:44Z</dc:date>
    <item>
      <title>Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853887#M805158</link>
      <description>Hello Gurus,&lt;BR /&gt;&lt;BR /&gt;On Solaris, coreadm offers to put all core with a filename formatting in a specific directory.&lt;BR /&gt;&lt;BR /&gt;How to deal machine wide on the core dump creation on HP-UX 11.00 ?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Nicolas&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 09:06:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853887#M805158</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-23T09:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853888#M805159</link>
      <description>Not aware of such a utility on HPUX.&lt;BR /&gt;&lt;BR /&gt;We use the 'find' cmd to locate them.</description>
      <pubDate>Fri, 23 Apr 2004 09:18:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853888#M805159</guid>
      <dc:creator>Scot Bean</dc:creator>
      <dc:date>2004-04-23T09:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853889#M805160</link>
      <description>find / -type f -name core&lt;BR /&gt;&lt;BR /&gt;Will give you core files on your system.&lt;BR /&gt;&lt;BR /&gt;I dont think that you can control it system wide. If you do not want core to be generated, then you have few options.&lt;BR /&gt;1. ulimit (man sh for details.)&lt;BR /&gt;ulimit c 0 -- will not allow core generation.&lt;BR /&gt;2. Creating a core file with 000 perms will also that.&lt;BR /&gt;3. creating a soft link- core and pointing to /dev/null.&lt;BR /&gt;ln -s /dev/null core&lt;BR /&gt;&lt;BR /&gt;But if you disable it, you will not kow what caused core file. file core command will give you some details on what went wrong.&lt;BR /&gt;&lt;BR /&gt;Anil&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 09:25:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853889#M805160</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-04-23T09:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853890#M805161</link>
      <description>Man 5 signal for the behavior on HP-UX boxes but note that this really defines the default behavior. For almost all signals, the default signal handling can be overridden through the use of custom signal handlers. For HP-UX, the default behavior for signals that trigger the generation of a corefile is to create the corefile in the current working directory of the process.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 09:38:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853890#M805161</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-04-23T09:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853891#M805162</link>
      <description>Clay,&lt;BR /&gt;&lt;BR /&gt;I'm aware of the core creation, first PWD, then if the directory is writeable for the user, the home directory is used, and there could be another default place in case this doesn't work.&lt;BR /&gt;&lt;BR /&gt;But check this :&lt;BR /&gt;&lt;A href="http://www.freebsd.org/cgi/man.cgi?query=coreadm&amp;amp;apropos=0&amp;amp;sektion=0&amp;amp;manpath=SunOS+5.9&amp;amp;format=html" target="_blank"&gt;http://www.freebsd.org/cgi/man.cgi?query=coreadm&amp;amp;apropos=0&amp;amp;sektion=0&amp;amp;manpath=SunOS+5.9&amp;amp;format=html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This is a simple sysadmin command that doesn't deal with signal per se.&lt;BR /&gt;&lt;BR /&gt;I don't know how to feed an enhencement request for HP-UX, but this is clearly a good candidate !&lt;BR /&gt;&lt;BR /&gt;Thk for your time,&lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Fri, 23 Apr 2004 10:05:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853891#M805162</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-23T10:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853892#M805164</link>
      <description>Well, feel free to make a request. If you are under support, open a case and your request will be passed along --- but, dont expect much. My personal opinion is to leave things that have been in place for decades alone --- you often break much more than you fix. I can't get too excited about where a core file gets written because the real concern is why it gets written. &lt;BR /&gt;&lt;BR /&gt;People who have done UNIX a long time tend to avoid implementation specific commands and use the "lowest common denominator" approach. That way, your solutions are the most portable.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 11:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853892#M805164</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-04-23T11:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853893#M805166</link>
      <description>I like the idea.&lt;BR /&gt;&lt;BR /&gt;You can't find out 'why' the core file happened if you can't find the core file.&lt;BR /&gt;&lt;BR /&gt;Note that on Itanium machines, the Aries product (emulator) saves cores with a prefix on the name, so a simple&lt;BR /&gt;&lt;BR /&gt;"find / -name core" will not find these.</description>
      <pubDate>Fri, 23 Apr 2004 11:09:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853893#M805166</guid>
      <dc:creator>Scot Bean</dc:creator>
      <dc:date>2004-04-23T11:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853894#M805167</link>
      <description>Clay, with all du respect I must disagree. &lt;BR /&gt;1) Core dump creation become an issue on its own when you get filesystem full. &lt;BR /&gt;&lt;BR /&gt;2) core dump are named core, whatever the binary that creates them, what ever the date ... Well that is not satisfactory. If there are several program crash, there should be several core dump.&lt;BR /&gt;&lt;BR /&gt;3) In a ideal world, core dump doesn't exist. But in my world, there are core dumped by commercial application that need to be examined. I'm not paid to do Oracle R&amp;amp;D (I couldn't even if I wanted !!).&lt;BR /&gt;&lt;BR /&gt;4) If you use only posix non specifiq tool, well forget about glance, SAM, ... Every Unix flavor has its pro and cons, the best OS would be the one providing the best of all others. Take linux for instance and the ps command, well you can usethe BSD ps aux or SysV ps -ef style, ps doesn't care what you're used to, in both case, it is ready to serve. &lt;BR /&gt;&lt;BR /&gt;To me you have a very conservative point a view, in system administration that's a quality. But if people designing OS have the same attitude, taht would be mess. Boy, we would'nt have paging - it's dangerous to give memory that you don't really have... I guess you catch my drift ;-D&lt;BR /&gt;&lt;BR /&gt;I stand by what I said, HP should consider coreadm for future release.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Fri, 23 Apr 2004 11:22:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853894#M805167</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-23T11:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853895#M805168</link>
      <description>Actually I was around when demand paging was introduced and welcomed it. I also use tools like Glance and SAM -- they certainly have their place. What I don't like are changes to things that have worked the same way for a long time. e.g. Let's add a new column to ps and make it default. You just broke tons of scripts. &lt;BR /&gt;&lt;BR /&gt;All of this misses the main point. The problem is not where the core file gets written (even if it fills up a filesystem) but rather that it gets written in the first place. If I write an application that dumps core, I take it as a personal failure and immediately fix it. I expect (and tolerate) no less from a vendor. I have even fixed things for major database vendors. When I find a corefile I immediately do a stack trace to let the vendor know what happened.&lt;BR /&gt;Many debuggers expect the corefile to be in the CWD and to be named 'core' although that can be overridden.&lt;BR /&gt;&lt;BR /&gt;Of course, my approach is a little radical because I literally have not had a dumped core in years on a production box. Those applications which do not pass the Sandbox and Test just don't make it to Production.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2004 11:49:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853895#M805168</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-04-23T11:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853896#M805169</link>
      <description>Hello Gurus,&lt;BR /&gt;&lt;BR /&gt;On Solaris, coreadm offers to put all core with a filename formatting in a specific directory.&lt;BR /&gt;&lt;BR /&gt;Thare are news about this on HP-UX 11.00 ?&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Thu, 07 Apr 2005 09:15:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853896#M805169</guid>
      <dc:creator>Gianluigi_3</dc:creator>
      <dc:date>2005-04-07T09:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853897#M805170</link>
      <description>My favourite experience with a core file is when trying to debug an application that very intermittantly dumped core. After several hours of effort, I finally managed to get a usable core, started up gdb to examine it and gdb core dumped, overwriting the original core!&lt;BR /&gt;&lt;BR /&gt;Lesson learned, always rename a core before starting the debugger on it.</description>
      <pubDate>Thu, 07 Apr 2005 10:26:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853897#M805170</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-04-07T10:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853898#M805171</link>
      <description>Ciao Stepen&lt;BR /&gt;The lesson is right, but you can have more that one different cores in a short time and where you find the core you have only the last core. This is my very problem!!! I lose many cores in HP!!!&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Gianluigi</description>
      <pubDate>Thu, 07 Apr 2005 10:52:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853898#M805171</guid>
      <dc:creator>Gianluigi_3</dc:creator>
      <dc:date>2005-04-07T10:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853899#M805172</link>
      <description>Ciao Gianluigi &lt;BR /&gt;&lt;BR /&gt;la vita non Ã¨ giust</description>
      <pubDate>Thu, 07 Apr 2005 11:11:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853899#M805172</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-04-07T11:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with core dump creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853900#M805173</link>
      <description>Result : HP-UX 0 / Solaris 1</description>
      <pubDate>Mon, 24 Oct 2005 09:34:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dealing-with-core-dump-creation/m-p/4853900#M805173</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2005-10-24T09:34:57Z</dc:date>
    </item>
  </channel>
</rss>

