- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to start sybase
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
05-17-2007 07:12 AM
05-17-2007 07:12 AM
./RUN_DSSS2[8]: 5662 Memory fault(coredump)
The core dump is /sybase/home/ASE-12_0/install/core on dsss2. I have no other error messages that I can use to debug the problem
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 07:52 AM
05-17-2007 07:52 AM
SolutionThe obvious place to start is with the core dump.
$ strings /sybase/home/ASE-12_0/install/core |more
should give you some information. If you're feeling ambitious, use gdb to analyze the file:
$ gdb /sybase/home/ASE-12_0/install/startserver /sybase/home/ASE-12_0/install/core
But before digging too deep, ask yourself:
"What has changed recently?"
http://hpux.connect.org.uk/hppd/hpux/Gnu/gdb-5.3/
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 08:07 AM
05-17-2007 08:07 AM
Re: Unable to start sybase
It would appear something has gone wrong with the sybase binaries. Perhaps the disk had a problem due to the suddenness of the reboot.
If there is a sybase equivalent to an oracle relink, thats where I would look. Otherwise see if there is an error message with sybase support or on the web and see if there is a binary that can be "borrowed" from another machine.
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
05-17-2007 08:27 AM
05-17-2007 08:27 AM
Re: Unable to start sybase
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2007 02:38 AM
05-18-2007 02:38 AM
Re: Unable to start sybase
I disagree with your statement. The ASCII strings in a core file can provide valuable insight into the root cause of a problem, including the actual command line used in execution, options specified, environmental variables in place at run-time (e.g. SHLIB_PATH, PATH, USER, SHELL, TERM, PWD), and any libraries linked dynamically. Of course, much of what is displayed must be ignored, as the core dump contains any strings originally present in the program's image. However, after a little practice, it's not difficult to differentiate between the useful nuggets and background noise, based on a string's position in the dump and its context.
Analyzing a core dump may not provide a "silver bullet" every time. In fact, oftentimes very little new information can be gleaned from one, and there's no guarantee that anything useful is present in the Sybase core in question. But there are certainly times in which a useful clue or insight can be obtained from the exercise.
That said, I fail to see how "Doing a strings [...] is absolutely, positively useless." Maybe we're just looking at different core dumps.
PCS