- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Oracle on OpenVMS
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
05-24-2006 08:56 PM
05-24-2006 08:56 PM
Oracle on OpenVMS
The listener port of Oracle DB is 1521. When a client connects to Oracle, the session should be established by OracleHost@1521 & Client@random port. However, we found the session was not established on Oracle listener port 1521. It is a random port large than 1000. Is it normal? Can we fix the Oracle listener port?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 09:16 PM
05-24-2006 09:16 PM
Re: Oracle on OpenVMS
The oracle listener always defaults to port 1521.
It is best to not use a random port and fix a port. Oracle will listen on any port you tell it to use.
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
05-24-2006 09:21 PM
05-24-2006 09:21 PM
Re: Oracle on OpenVMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 09:28 PM
05-24-2006 09:28 PM
Re: Oracle on OpenVMS
What is the Oracle error-message your getting?
If you do a telnet from a different server to the database server on port 1521 do you get a connetion refused error?
telnet
Darrel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2006 03:48 AM
05-25-2006 03:48 AM
Re: Oracle on OpenVMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2006 10:26 AM
05-25-2006 10:26 AM
Re: Oracle on OpenVMS
* Port ownership/protection
* Commanfile ownership/protection
* Protection of log directroy (typically SYS$LOGIN of service UIC)
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2006 12:53 PM
05-25-2006 12:53 PM
Re: Oracle on OpenVMS
Since I touched ORACLE 7 on OpenVMS many years ago, this may not be how ORACLE 9 works. As I recall, under ORACLE 7, the listener would field the incoming connections on port 1521, then, send back to the caller a port number which should be used for the ORACLE database SQL connection. Then a new connection is established to the port which was designated by the listener. This way the listener is always free to do it job as traffic director.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2006 06:37 PM
05-25-2006 06:37 PM
Re: Oracle on OpenVMS
You have a special parameter in listener.ora:
use_shared_socket = true
which instruct Oracle listener to use the service port (normaly 1521) for connections and communications. With this parameter Oracle listener acts as a normal TCP/IP service.
But there is little problem. The last time I try this parameter on VMS it does not work :(. It was a little older version of Oracle (I think 9.1...) and VMS 7.2-1. When I try with the same version on NT and on Linux it works OK.
You can try to put the parameter in yours listener.ora and see how it works.
Bojan