- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Releasing port after abnormal termination
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
11-28-2000 06:56 AM
11-28-2000 06:56 AM
Releasing port after abnormal termination
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 07:20 AM
11-28-2000 07:20 AM
Re: Releasing port after abnormal termination
Once this has happened you are usually stuck with the reboot. The problem arises from the server side waiting for the close dialog that is never going to happen.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 07:33 AM
11-28-2000 07:33 AM
Re: Releasing port after abnormal termination
Here is some more information that may help you avoid some of these problems:
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xacfe5f260cafd4118fef0090279cd0f9,00.html
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xb5e8f841489fd4118fef0090279cd0f9,00.html
Hopefully these will help you! Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:02 AM
11-28-2000 08:02 AM
Re: Releasing port after abnormal termination
BTW, how did you search the forum lists for the answer you provided?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:17 AM
11-28-2000 08:17 AM
Re: Releasing port after abnormal termination
To search the ITRC Forum, click "search" on the left of the page, choose "Community Forums" and apply your keyword(s).
For searching the Technical Knowledge database I generally go to "Maintenance & Support" [on the left] and go to "Search Technical Knowledge Base" from there.
In your specific case, I have a special interest in this problem, since I have had the problem on various Operating System platforms. I remembered recently researching some of the information I've provided you, and so it wasn't too hard for me to search and choose my threads.
Regards, and good luck!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 11:34 AM
11-29-2000 11:34 AM
Re: Releasing port after abnormal termination
as you are likely finding, trying to tie a user (client side) to a specific port number is problematic. SO_REUSEADDR often does not do what one wants as it was intended for the server side and just allows the creation of a listen endpoint.
it would really be best to allow clients to use just about any port number. also, be sure to use something other than port numbers to authenticate clients.
for servers, as will be found, the answer is to set SO_REUSEADDR in the application before tyring to bind() to the well-known port number. this will solve the TIME_WAIT issue on the server side.
shortening TIME_WAIT via ndd is also not really a good idea. TIME_WAIT is there for a purpuse after all - part of th edata integrity heuristics of the protocol.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 11:58 AM
11-29-2000 11:58 AM
Re: Releasing port after abnormal termination
lsof -i @www.hp.com:513-515
will list open file using any protocol on ports 513, 514, or 515 of host www.hp.com.
This utility is often one of the most common tools used when trying to find out more about the ports your system is using.
Tony