- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Setting port numbers in HP-UX 10.20
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-22-2003 06:38 AM
09-22-2003 06:38 AM
Setting port numbers in HP-UX 10.20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 06:50 AM
09-22-2003 06:50 AM
Re: Setting port numbers in HP-UX 10.20
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 02:15 AM
09-23-2003 02:15 AM
Re: Setting port numbers in HP-UX 10.20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 02:49 AM
09-23-2003 02:49 AM
Re: Setting port numbers in HP-UX 10.20
tcp_largest_anon_port however is about largest anonymous connection port.These are values in ndd -
$ ndd -get /dev/tcp tcp_smallest_nonpriv_port
1024
$ ndd -get /dev/tcp tcp_smallest_anon_port
49152
$ ndd -get /dev/tcp tcp_largest_anon_port
65535
From 1024 to 49152 ports called registred.
See here more : http://members.cox.net/~ndav1/stratasphere/selecting_ports.doc.
I wouldn't set largest_anon_port to 2000 since that would make ports from 2000 and up
"dynamic"...applications may not like it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 05:29 AM
09-23-2003 05:29 AM
Re: Setting port numbers in HP-UX 10.20
One more thing to add, in HP-UX, the server process should be running under a privileged user account (root) to be able to listen for the connections in the port range from 0 to 1024.
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 06:42 AM
09-23-2003 06:42 AM
Re: Setting port numbers in HP-UX 10.20
xxxx 1521/tcp # listner oracle on /etc/services
but when I try to make ORACLE up, this port is being used by other aplication/service.
I found a document that says /etc/services file declares an "intention" to use a particular port number insted of "reserve" it.
Is there a way to avoid this problem ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 06:54 AM
09-23-2003 06:54 AM
Re: Setting port numbers in HP-UX 10.20
You don't need to & shouldn't put an entry in /etc/services for Oracle.
That's what it's listener - tnslsnr - does.
It watches for connections coming in on the ports specified in it's tnsnames.ora file.
Rgds,
Jeff