- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: core dumps
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
04-28-2003 06:55 AM
04-28-2003 06:55 AM
core dumps
Kinda odd question. Several of our oracle programmers complaining that the system has too much core dumps. I checked perf view and glance plus for possible problems. Looking for application and any process that may be of conflict. There was nothing out of the ordinary except high memory usage. I set the kernal parameters much higher and still the same problem. I was wondering if anyone has run to similar situation and can recommend performance tuning. It's possible that the hardware is unable to support the database but I need to all other possibility. Thank you all for your help.
H
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 07:00 AM
04-28-2003 07:00 AM
Re: core dumps
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf98719434a69d711abdc0090277a778c,00.html
Details please.
:)
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 07:02 AM
04-28-2003 07:02 AM
Re: core dumps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 07:03 AM
04-28-2003 07:03 AM
Re: core dumps
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 07:10 AM
04-28-2003 07:10 AM
Re: core dumps
L2000 server -2 360mhz processor. 2GB RAM.
Running 11.11 and oracle 9i.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 07:48 AM
04-28-2003 07:48 AM
Re: core dumps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 09:05 AM
04-28-2003 09:05 AM
Re: core dumps
to find out what application core dumped.
what core
to find out the application software versions.
a quick and dirty core analysis would be to use
# gdb /path/to/application /path/to/core
(gdb) bt
.
.
.
(gdb) quit
#
This will give you the stack trace of the core dump. Note that the application and core need to be gdb'd on the same (or equally sw installed) host.
Delving deeper into cores requires application source code. But just install latest patches on your box and check your kernel params based on the reason for the core.
LAter,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 09:06 AM
04-28-2003 09:06 AM
Re: core dumps
to find out what application core dumped.
what core
to find out the application software versions.
a quick and dirty core analysis would be to use
# gdb /path/to/application /path/to/core
(gdb) bt
.
.
.
(gdb) quit
#
This will give you the stack trace of the core dump. Note that the application and core need to be gdb'd on the same (or equally sw installed) host.
Delving deeper into cores requires application source code. But just install latest patches on your box and check your kernel params based on the reason for the core.
LAter,
Bill
PS: get gdb from http://www.hp.com/go/developer
(http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,548,00.html)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 09:22 AM
04-28-2003 09:22 AM
Re: core dumps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 09:29 AM
04-28-2003 09:29 AM
Re: core dumps
As far as having lots of core dumps around, using up file system space. Try putting the following entry in cron to remove core files older than two days:
00 02 * * * /usr/bin/find / -type f -name "core" -mtime +2 -exec rm {} \;
Pete
Pete