Operating System - HP-UX
1834789 Members
2687 Online
110070 Solutions
New Discussion

Machine keeps dumping core, how to turn it off?

 
SOLVED
Go to solution
dictum9
Super Advisor

Machine keeps dumping core, how to turn it off?


I get a core file dumped in / every half hour, not sure why. How do I disable core creation?
6 REPLIES 6
dictum9
Super Advisor

Re: Machine keeps dumping core, how to turn it off?

and how do I determine what is causing core?
Tim Nelson
Honored Contributor
Solution

Re: Machine keeps dumping core, how to turn it off?

execute the file command on the core. This should at least tell you what process dumped it and why.

If it is every 1/2 hour like clock work then mostlikely related to something running in cron.

Steven E. Protter
Exalted Contributor

Re: Machine keeps dumping core, how to turn it off?

Shalom,

Two issues.

To figure out whats wrong, you need a core.

To stop it from filling up your disk, you need to supress it.

ulimit -S c 0 I believe stops core dumps.

Not totally trusting my memory on that one though.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
James R. Ferguson
Acclaimed Contributor

Re: Machine keeps dumping core, how to turn it off?

Hi:

To suppress the creation of the core file(s) you can set the 'ulimit' thusly:

# ulimit -c 0

See the manpages for 'sh-posix(1)'.

Regards!

...JRF...
Steven E. Protter
Exalted Contributor

Re: Machine keeps dumping core, how to turn it off?

Sorry,

ulimit -Sc 0

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
V. Nyga
Honored Contributor

Re: Machine keeps dumping core, how to turn it off?

Hi,

to disable core creation only in this directory, you can create a subdirectory 'core', so no core file can be created.

Volkmar
*** Say 'Thanks' with Kudos ***