- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- port 9776
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
09-19-2008 06:14 AM
09-19-2008 06:14 AM
i need to know if hpux or the inside product
use this port.
Or if exist a product that use port 9776.
many point at all
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:21 AM
09-19-2008 06:21 AM
Solution# lsof -i tcp:9776
will show what processes are using or listening on that TCP port.
# lsof -i udp:9776
will do the same, except for UDP.
According to the IANA registered port list here:
http://www.iana.org/assignments/port-numbers
No one has officially registered the use of port 9776, TCP or UDP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:24 AM
09-19-2008 06:24 AM
Re: port 9776
You could examine '/etc/services' to see if there is any *intention* to use this port for a particular use.
You could interrogate your server with 'netstat' or 'lsof' to see if anything is using this port.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:25 AM
09-19-2008 06:25 AM
Re: port 9776
many point at all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:29 AM
09-19-2008 06:29 AM
Re: port 9776
> How can RESERVE this port for my application ?
You can't other than by using it.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:34 AM
09-19-2008 06:34 AM
Re: port 9776
check the port here :
http://www.iana.org/assignments/port-numbers
so to reserve it you should appy IANA perhaps :)
Kenan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 06:41 AM
09-19-2008 06:41 AM
Re: port 9776
> there is any *intention* to use this port
> for a particular use.
Except that any program can use a port which
is not listed there, and a port can be listed
there and not used by anyone. So why bother
looking there? I suppose that you could get
lucky and find a suggestive service name, but
it sounds to me like a pretty long shot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 07:52 AM
09-19-2008 07:52 AM
Re: port 9776
Yes you can add an entry to /etc/services, this will serve as a record of what intends to use what port but it will NOT stop other program from using that port if it is available. (/etc/services is only a # to name lookup table )
As mentioned lsof is the best to see if a port is unused. netstat -an|grep 9776 can help as well.
If you start your application and it fails with a bind error on port 9776, that would be another indicator that the port is already used by something.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 08:08 AM
09-19-2008 08:08 AM
Re: port 9776
netstat -an|grep 9776
If LISTEN is mentioned it is in use.
and
# lsof -i tcp:9776
# lsof -i udp:9776
this will show which product use this port
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2008 08:15 AM
09-19-2008 08:15 AM