- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP Port 9009, not accepting coonection
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
01-06-2005 08:42 AM
01-06-2005 08:42 AM
TCP Port 9009, not accepting coonection
How can I see the TCP details of perticular port, & other details , I dont know mush about. this is hpux 11.11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2005 08:48 AM
01-06-2005 08:48 AM
Re: TCP Port 9009, not accepting coonection
netstat -an|grep 9009
If you have lsof istalled,
lsof -p tcp:9009
Also from some other machine, telnet host 9009
Does it connect??
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2005 08:48 AM
01-06-2005 08:48 AM
Re: TCP Port 9009, not accepting coonection
Try lsof,
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.73/
# lsof -i tcp:9009
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2005 08:51 AM
01-06-2005 08:51 AM
Re: TCP Port 9009, not accepting coonection
are ready to accept connection on your system:
# netstat -a | grep LISTEN
If port 9009 is not listed, then no application is
listening on that port.
"ps -ef" shows processes running on your system
and not connection status.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2005 03:44 PM
01-06-2005 03:44 PM
Re: TCP Port 9009, not accepting coonection
lsof -i tcp:9009 will give you the process name and pid listening in the port. Also you can check out netstat -a|grep CLOSE_WAIT. Check out if the particular application (listening on 9009) has too many CLOSE_WAITs. Then you need to clear these, either by doing a shutdown/startup of the application or if possible by ipcs -rm.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 03:48 AM
01-07-2005 03:48 AM
Re: TCP Port 9009, not accepting coonection
If the application has lots of CLOSE_WAIT connections, it implies the application is buggy and not closing connections like it should.
It is also possible to have hit maxfiles so no more file descriptors (sockets = file descriptors) no more connections. Accept() would return an error in that situation you could see with tusc syscall traces or the app should be logging it somewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 09:03 AM
01-07-2005 09:03 AM
Re: TCP Port 9009, not accepting coonection
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/snort-2.2.0/
install and run it while you try and connect to the HP from the client. This should give you the right information to tell if it's the HP or the client software that isn't handling the connection properly.
mark