- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Not releasing ESTABLISHEd connections
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
02-02-2006 06:24 PM
02-02-2006 06:24 PM
Not releasing ESTABLISHEd connections
I am having rp3410 with hp-ux11.11 acting as a web server with tuxedo instance.
my clients are talking to port 4200(TCP).
Connection gets established on 4200 and later on passed to 4201, 4202 ....
Though client quits the application, the connection on 4200 remains as established.
This way it gets accumulated till it reaches max_file limit, then i have to reset the service.
can anyone suggest a cause and solution for this problem? Or if any patch is available to resolve this issue?
Regards
Umesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 07:57 PM
02-02-2006 07:57 PM
Re: Not releasing ESTABLISHEd connections
http://www2.itrc.hp.com/service/patch/crumbRequest.do?crumb=patch.breadcrumb.main&BC=
Tune socket ESTABLISHED problem with dsniff tool. Search for it.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 11:53 PM
02-02-2006 11:53 PM
Re: Not releasing ESTABLISHEd connections
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=974906
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 12:01 AM
02-03-2006 12:01 AM
Re: Not releasing ESTABLISHEd connections
Ideas:
1) Patching as other have indicated.
2) Raise max files limit and max_uprc in the kernel
3) See about applicaiton/tuxedo patches.
4) Perhaps write a script that kills dead processes if there is a way to determine this by script.
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
02-03-2006 12:46 PM
02-03-2006 12:46 PM
Re: Not releasing ESTABLISHEd connections
When they get redirected, does the web server remember to close the connection that came-in to port 4200? Does the client remember to close the connection it made to port 4200, using a _graceful_ TCP close rather than the kludge of using SO_LINGER and an abortive close?
TCP_KEEPALIVES may kludge around the problem, but only if the client went away using abortive close and the RST was lost (RST's are not retransmitted like FINs are - FIN's are the TCP segments sent for graceful close of a connection).
Also, if there is any forking going-on, keep in mind that a fork will increment the reference count for a socket, and the TCP connection will not be closed until the last reference is closed - which means that both the parent and the child have to call close on their respective file descriptors - or both have to exit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 04:56 PM
02-03-2006 04:56 PM
Re: Not releasing ESTABLISHEd connections
Tuxedo is configured to run JSL on 4200
And every JSL connection has 11 JSH (handlers) configured on 4201 - 4211.
Again JSH has multiplexing factor defined as 5. (ie. 11*5 connections).
Ideally, clients should connect on JSL(4200). And JSL passes on the requests to any of its JSHs. After that JSL should quit the connection. This works fine on LAN with max 55 simultaneous connections.
But for VSAT, connections on 4200 keeps accumulating.
Regards
Umesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2006 04:29 AM
02-06-2006 04:29 AM