- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- core file generated by Medusa
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
03-26-2006 06:07 PM
03-26-2006 06:07 PM
I need your help in diagnosing a problem, a core file has been generated by medusa. If I give
# file core
the output is ..
core: core file from 'medusa_job6712' - received SIGSEGV
what does this mean and how to address it..
Thanks in advance.
Venkatesan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:09 PM
03-26-2006 06:09 PM
Re: core file generated by Medusa
The actual core file may be useful to the developer.
Take a quick look at it with strings command.
strings core | more
nice sounding command anyway.
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
03-26-2006 06:21 PM
03-26-2006 06:21 PM
Re: core file generated by Medusa
memory problem
increase maxssiz maxdsiz in kernel
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:25 PM
03-26-2006 06:25 PM
Re: core file generated by Medusa
Thanks for your idea, but I would like to know how do you say that these values has to be increased?, is there any special tools or methods available to diagnose?
regds
Venkatesan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:41 PM
03-26-2006 06:41 PM
Re: core file generated by Medusa
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:45 PM
03-26-2006 06:45 PM
SolutionSIGSEGV is a signal 11 which means Segmentation Violation.
It may appear during a program compilation or while executing it. Common cause of this signal is lack of memory required by the program. The memory required is for program stack , data and text allocation.
These requirements could be know using "size" command.
The respective kernel parameters ( system limits) are maxtsize, maxssize, maxdsize or their 64bit eqivalent under 64 bit enviornment ( maxssize_64bit etc.)
Thus you can check those kernel parameters and tune them if required. It may not be problem with those paramters if the program is not written correctly to use memory space.
You can use a debugger like adb or WDB to debug the program by referncing the core file. The stack trace would be useful to track down the problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:45 PM
03-26-2006 06:45 PM
Re: core file generated by Medusa
# vmstat
# top
# UNIX95=1 ps -ef -o pid,sz,vsz,comm
# sam -> performance monitor -> system properties -> memory tab
They will give the memory available and usage statistics.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:50 PM
03-26-2006 06:50 PM
Re: core file generated by Medusa
thank you for your explanation, may I know from where shall I get stack trace program or can I debug thru adb itself? if so how to do it, could you please explain me..
regds
Venkatesan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:51 PM
03-26-2006 06:51 PM
Re: core file generated by Medusa
ftp://eh:spear9@hprc.external.hp.com/memory.htm
Gives all the tools you need
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:53 PM
03-26-2006 06:53 PM
Re: core file generated by Medusa
# what core
# gdb
gdb>bt
# adb
adb>$c
will give that.
--
Muthu