- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: opening port
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
08-05-2009 11:31 PM
08-05-2009 11:31 PM
opening port
I've 2 HP servers.
First server, 6535 port is opened
netstat -an | grep 6535
tcp 0 0 10.169.33.138.6535 *.* LISTEN
but nothing in file /etc/services
How to open this port 6535 on the second server?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2009 11:40 PM
08-05-2009 11:40 PM
Re: opening port
check with lsof in server 1 that which process's using port 6535
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2009 11:48 PM
08-05-2009 11:48 PM
Re: opening port
lsof | grep 6535
CFTTCPS 19547 syscft 9u IPv4 0xe0000001e28a43c0 0t0 TCP su1241cli.sfr.com:6535 (LISTEN)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 04:07 AM
08-06-2009 04:07 AM
Re: opening port
> /etc/services file then, the port is opened
> by the process or software.
If a service (port) name _is_ mentioned in
the "/etc/services" file, then some program
still needs to run (or to be registered with
inetd, so that inetd can run it) to give you
that "LISTEN". It's easy to write a program
which will listen on some port, but which
never looks at "/etc/services".
Some people seem to have a greatly inflated
idea of what "/etc/services" does. This
leads to many useless suggestions involving
changes to "/etc/services".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 04:38 AM
08-06-2009 04:38 AM
Re: opening port
I describe /etc/services as a reservation file.
Some services require it to be configured to work. Oracle an the other extreme totally ignores it, which is IMO bad practices.
You seem to have an unexpected service running on that port on the second server. Port conflict.
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
08-21-2009 05:14 AM
08-21-2009 05:14 AM
Re: opening port
ps -ef | grep nc
to see if netcat is running.
Fred