- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 'Memory fault(coredump)' Error message
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 11:43 AM
10-10-2001 11:43 AM
'Memory fault(coredump)' Error message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:52 AM
10-10-2001 11:52 AM
Re: 'Memory fault(coredump)' Error message
When you get the core file, do a
file core and see what output you are getting.
Depending on the error, you need to decide whehter you want to tune maxdsiz or maxssiz.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:55 AM
10-10-2001 11:55 AM
Re: 'Memory fault(coredump)' Error message
One thing that does occur to me since you say this command is executed over many files is that the program is attempting to copy the argument list into an array that is too small. Does is crash when fed only a few filenames?
The other thing that can cause this is corrupt files. You really have to give us more to go on than this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 12:08 PM
10-10-2001 12:08 PM
Re: 'Memory fault(coredump)' Error message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 12:12 PM
10-10-2001 12:12 PM
Re: 'Memory fault(coredump)' Error message
Time to call Baan Support and wait for their usual 2 or 3 day response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 12:13 PM
10-10-2001 12:13 PM
Re: 'Memory fault(coredump)' Error message
YOu can't get any information from strings. If you really want to debug the core file , we need to use xdb but that's too complicated.
What does your "file core" say?
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 12:16 PM
10-10-2001 12:16 PM
Re: 'Memory fault(coredump)' Error message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 12:03 AM
10-11-2001 12:03 AM
Re: 'Memory fault(coredump)' Error message
#file core
what is the result.
for ex. the result gives a 'telnetd' as source
YOu can use gdb for examining your core file.
#/opt/langtools/bin/gdb telnetd core
gdb>where
You can start your debugging here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 06:24 AM
10-11-2001 06:24 AM
Re: 'Memory fault(coredump)' Error message
core: core file from 'tbase6.1' - received SIGSEGV
What does this mean and what do I need to do next?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 06:33 AM
10-11-2001 06:33 AM
Re: 'Memory fault(coredump)' Error message
It's the same answer as before. The Baan executable is attempting an out of bounds memory operation - like exceeeding the boundaries of an array or attempting to write to a NULL address. This is NOT an OS issue but a programming/data error. The answer is to call Baan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 11:40 PM
10-11-2001 11:40 PM
Re: 'Memory fault(coredump)' Error message
#file core
#gdb 'tbase6.1' core
.....
gdb>where
....