- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X server error
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-28-2004 08:04 AM
03-28-2004 08:04 AM
X server error
Running HPUX 11i. Our software that we are using randomly crashes without warning with only the following output "Fatal IO error: client killed". This usually happens with the user is making a normal action like clicking on an "ok" button or clicking in a text box. It cannot be duplicated and we are stumped to what is causing it. Our software is developed on Mandrake and we are using Trolltech's QT toolkit. We then port it to HPUX for some of our users. In our limited testing, we have not seen this on linux. Trolltech has stated that for some unknown reason, our application is being disconnected from the X server. Is there any debug that we can turn on or third party software that may be able to lend us a hand?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2004 09:29 AM
03-28-2004 09:29 AM
Re: X server error
I would first check that the HP-UX 11i, the PC/Workstation on which Xserver is running has the latest patches installed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2004 09:36 AM
03-28-2004 09:36 AM
Re: X server error
If the process lives long enough you might try tusc.
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.5/
It can collect information and help you verify if your port works.
If it works on some HP-UX clients and not others, its probably kernel parameters doing you in. maxusers to increase nproc,nfiles
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-28-2004 05:12 PM
03-28-2004 05:12 PM
Re: X server error
any messages logged to /var/dt/Xerror ?
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2004 01:14 AM
03-29-2004 01:14 AM
Re: X server error
Fatal IO errors could come from sockets that are closed (common in network environments) or a corrupt fd (programming problem) or some other failure that is causing X to fail on a read or a write to the socket that the Xserver has open.
You can setup your own error handler with XSetIOErrorHandler() and then you could do something like call the HP-UX function U_STACK_TRACE(). This would give you a stack trace of where you were at the time of the failure. Once you exit this function, the library will call exit() and your program will exit.
If you can reproduce the problem reliably, you might compile your code with -g, and use gdb. Set a breakpoint on _exit (b _exit) and then continue. When the program hits _exit it will either be because the program encountered this error or someone is exiting the program. At that point, you can get a stack trace and debug it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2004 04:37 AM
03-29-2004 04:37 AM