- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- wrong established connections in netstat
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-13-2006 09:16 PM
02-13-2006 09:16 PM
wrong established connections in netstat
On a HP-UX 11.11, looking at netstat or lsof, I find several TCP connections with ESTABLISHED status that no more exist on the remote host.
For example:
tcp 0 0 192.168.10.10.6121 192.168.10.20.1204 ESTABLISHED
tcp 0 0 192.168.10.10.5101 192.168.10.20.4690 ESTABLISHED
tcp 0 0 192.168.10.10.5001 192.168.10.20.1201 ESTABLISHED
192.168.10.10 is my HP server, with processes still having ESTABLISHED connections to 192.168.10.20.
On 192.168.10.20, none of these connections exist.
All of these connections are Corba connections opened by applications running Java 1.4.2_04 / Jacorb 1.4.1.12
Is this caused by some applicative incorrect behavior?
Are you aware of some system parameter that would detect/close these "ghost" connections?
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 09:23 PM
02-13-2006 09:23 PM
Re: wrong established connections in netstat
This is caused usually by poor code in the java server.
Make sure its completely patched and the applicaiton itself checked as well.
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-13-2006 11:17 PM
02-13-2006 11:17 PM
Re: wrong established connections in netstat
You may want to try enabling tcp keepalive.
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-13-2006 11:36 PM
02-13-2006 11:36 PM
Re: wrong established connections in netstat
I audited with HPJConfig recently and found no missing patch on server side.
The tcp_keep_alive is configured with system default settings (2 hours):
root # ndd -get /dev/tcp tcp_keepalive_interval
=> 7200000
but this doesn't seem to detect anything...
Connections are controlled by ORB, so I will look for some discussions in JacORB forums.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 11:55 PM
02-13-2006 11:55 PM
Re: wrong established connections in netstat
setting jacorb.connection.server.keepalive=on changes something...