- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Xerrors
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
08-15-2000 08:24 AM
08-15-2000 08:24 AM
Xerrors
I install a couple of patches for the CDE Runtime and Xserver but still have this problem.
error (pid 1518): Server for display batman:0 terminated unexpectedly 0
Any suggestion?? HELP!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 08:33 AM
08-15-2000 08:33 AM
Re: Xerrors
Run this file and see what is reported then fix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 11:32 AM
08-15-2000 11:32 AM
Re: Xerrors
Other things : try moviing out the way the $HOME/.dt directory (CDE wil recreate it) in case some bad resource has been saved and corrupting your users home or current session, also in a similar vain if you have a .Xdefaulys or .cshrc or similar file (include customisations to your .profile and .dtprofile these to can cause similar issues .... I'm affraid with just that error it's a case of elimination.
Lastly if all else fails :
How to run CDE in debug mode :
edit /usr/dt/config/dtrc.d/90_dtlogin_st
# VL_ARGS=""
VL_ARGS="-debug 9"
If [ -x "$DTLOGIN" ]
then
# exec $DTLOGIN $VL_ARGS ......dev/null ....
exec $DTLOGIN $VL_ARGS
/tmp/dtlogin.log 2>&1
else
then reboot....... .
cause the problem again and post the info to the forum ..best of luck !
gut feeling is it sounds as if a bad resource maybe to blame
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2000 06:00 AM
08-16-2000 06:00 AM
Re: Xerrors
batman:0 terminated unexpectedly
0
This error indicates the Xserver, /usr/bin/X11/X has terminated for some unknown reason. Little information is captured by default on the reason for the failure.
You can trap the Xserver's core file by:
touch /core
chmod 666 /core
The Xserver, when run by CDE or VUE, runs as daemon, which shares roots home directory, but has no permission to write to it. Touching a core file and changing the permissions will allow the Xserver to write its core.
Of course, once the core has been generated, you need to analyze it. The best and easiest tool to use is gdb, which is available for a free download from software.hp.com.
To do a quick analysis of the core file:
1. Make sure that the core is from the
Xserver. Sometimes other processes
overwrite it:
file /core
2. Run gdb to get a stack trace:
/opt/langtools/bin/gdb /usr/bin/X11/X /core
(gdb) bt
This should indicate the failing function which in many cases is enough to pinpoint the failure.
Unfortunately, sometimes this just isn't enough and other, more extreme measures are required to figure out what is going on. In that case, it becomes necessary to log a Response Center call to get someone to focus their efforts on resolving the problem.
Other sources of information that are useful to post are:
/var/X11/Xserver/logs/X0.log
This file contains the list of shared
libraries that the Xserver loaded. A
truncated list sometimes points to a
corrupt shared library.
/var/adm/syslog/syslog.log
Sometimes syslog will contain info
that is useful in isolating the problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2000 01:38 PM
08-16-2000 01:38 PM
Re: Xerrors
Thanks,
steve