- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Core files...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:16 AM
10-10-2001 02:16 AM
Core files...
Perhaps somebody know "beautiful way" for and termination core files?
Thanx in advance.
Oleg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:21 AM
10-10-2001 02:21 AM
Re: Core files...
Between "for" and "and"must be "observation of occurrence".
Oleg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:25 AM
10-10-2001 02:25 AM
Re: Core files...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:27 AM
10-10-2001 02:27 AM
Re: Core files...
This do not solves the cause of core, but left your disk clean.
I hope it help you !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:31 AM
10-10-2001 02:31 AM
Re: Core files...
WE have symbolic links in the directories they most ocurr in pointing to /dev/null - this way no corefiles left around hogging disk space.
eg.
/home/
/tmp
/
and application directories.
eg. ln -s /dev/null /tmp/core
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:42 AM
10-10-2001 02:42 AM
Re: Core files...
in .profile add:
ulimit -c 0
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 02:53 AM
10-10-2001 02:53 AM
Re: Core files...
# file core
figure out what it went down on and what core'd
get the Wildebeest debugger
from hp.com/go/languages
# gdb /path/to/cored/application /path/to/corefile/core
to look at the stack.
Search on the itrc for some of the signal/stack strings and apply the patch.
remove the core and never get the same one again!!!
or ln -s as above (good for webservers and less maintained directories)
Later,
Bill