- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: connect requests dropped due to full queue
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
07-25-2005 07:44 AM
07-25-2005 07:44 AM
connect requests dropped due to full queue
I've Oracle Applications on HP-UX.
I see much TIME_WAIT stat with the port 8000 on the server in where reside Apache, also see(netstat -p tcp):
49 connect requests dropped due to full queue
This behavior is normal ?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 07:58 AM
07-25-2005 07:58 AM
Re: connect requests dropped due to full queue
tcp_con_request_max
tcp_time_wait_interval - How long stream persists in TIME_WAIT tcp_tw_cleanup_interval - TIME_WAIT timeout expiration checking interval
You can check your current settings as follows.
ndd -h tcp_con_request_max
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 08:43 AM
07-25-2005 08:43 AM
Re: connect requests dropped due to full queue
The values:
tcp_con_request_max =4096
tcp_time_wait_interval=60000
tcp_tw_cleanup_interval=60000
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 10:37 AM
07-25-2005 10:37 AM
Re: connect requests dropped due to full queue
the netstat show :
$ netstat -an | grep tcp| awk '{print $6}'| sort | uniq -c
421 CLOSE_WAIT
130 ESTABLISHED
629 FIN_WAIT_2
79 LISTEN
1 SYN_SENT
460 TIME_WAIT
any suggestion?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2005 08:47 AM
07-26-2005 08:47 AM
Re: connect requests dropped due to full queue
HP-UX, and just about any other TCP stack out there, can deal with lots of TIME_WAIT without any trouble, so there should be no need to tweak anything there.