- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CLOSE_WAIT Question
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
06-18-2001 06:06 AM
06-18-2001 06:06 AM
Regards,
Jason V.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2001 06:10 AM
06-18-2001 06:10 AM
Re: CLOSE_WAIT Question
List files, sockets, etc opened by processes. Also gives a large amount of other related information.
Get http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 02:32 AM
06-19-2001 02:32 AM
Re: CLOSE_WAIT Question
I believe If you could have a look to the "TCP State transition Diagram", it would be benefic to undrestand the phenomena .
It seems that your application is not closing the connection and remaining in the CLOSE_WAIT state. You need to execute a close in order to be in the state " LAST_ACK " and this terminates correctly. I propose, you can told the developpers to finish thier works by adding the close-instruction in their code to close the socket correctly.
Please have a look in the following book :
UNIX
Network Programming
Networking APIs : Sockets and XTI
Volume 1
W. Richard Stevens.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 12:28 PM
06-19-2001 12:28 PM
Re: CLOSE_WAIT Question
To answer your main question without going off on other tangents: Yes, it is possible with ndd to close connections sitting in a CLOSE_WAIT state.
However, CLOSE_WAIT means that there is a program on the local system that is not responding to the file close request. BE AWARE that it is possible that you might cause that application to terminate or execute improperly.
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 05:08 AM
06-20-2001 05:08 AM
Re: CLOSE_WAIT Question
In this situation, the ports are being left in a CLOSE_WAIT state due to the fact that the application on the remote system, which opened the ports, terminates abrubtly. This had the side effect of leaving the ports open. Do you know the syntax for closing these ports with ndd? It would be great appreciated.
Regards,
Jason V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 05:34 AM