- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Question about the listener.ora
Operating System - HP-UX
1819696
Members
3571
Online
109605
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
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
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
тАО06-13-2002 02:04 AM
тАО06-13-2002 02:04 AM
Hi all,
I've got this listener.ora:
LISTENER =
(ADDRESS_LIST =
(ADDRESS= (PROTOCOL= IPC)(KEY= NMPROD))
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
(ADDRESS= (PROTOCOL= TCP)(Host= mbtphp1)(Port= 1521))
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME= NMPROD.world)
(ORACLE_HOME= /opt/app/oracle/product/8.1.6)
(SID_NAME = NMPROD)
)
(SID_DESC =
(SID_NAME = extproc)
(ORACLE_HOME = /opt/app/oracle/product/8.1.6)
(PROGRAM = extproc)
)
)
STARTUP_WAIT_TIME_LISTENER = 0
CONNECT_TIMEOUT_LISTENER = 10
TRACE_LEVEL_LISTENER = OFF
But I have seen some other listener.ora with:
(ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC)) instead
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
Could anybody tell me whats the difference between
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
and
(ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC))
Could it have any effect in the performance if I change this line ?
It's Oracle 8.1.6
Thanks,
Best Regards.
I've got this listener.ora:
LISTENER =
(ADDRESS_LIST =
(ADDRESS= (PROTOCOL= IPC)(KEY= NMPROD))
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
(ADDRESS= (PROTOCOL= TCP)(Host= mbtphp1)(Port= 1521))
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME= NMPROD.world)
(ORACLE_HOME= /opt/app/oracle/product/8.1.6)
(SID_NAME = NMPROD)
)
(SID_DESC =
(SID_NAME = extproc)
(ORACLE_HOME = /opt/app/oracle/product/8.1.6)
(PROGRAM = extproc)
)
)
STARTUP_WAIT_TIME_LISTENER = 0
CONNECT_TIMEOUT_LISTENER = 10
TRACE_LEVEL_LISTENER = OFF
But I have seen some other listener.ora with:
(ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC)) instead
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
Could anybody tell me whats the difference between
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
and
(ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC))
Could it have any effect in the performance if I change this line ?
It's Oracle 8.1.6
Thanks,
Best Regards.
Catch and release !!!!!!
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2002 05:04 AM
тАО06-13-2002 05:04 AM
Re: Question about the listener.ora
Hi
Different protocol only
see
http://www.siue.edu/~dbock/cis565/o18-net8administration.htm
Steve Steel
Different protocol only
see
http://www.siue.edu/~dbock/cis565/o18-net8administration.htm
Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2002 05:17 AM
тАО06-13-2002 05:17 AM
Re: Question about the listener.ora
Hi,
Try this link,
http://technet.oracle.com/doc/netware/netware.803/a57322_01/apbconfi.htm#443073
Hope this helps.
Regds
Try this link,
http://technet.oracle.com/doc/netware/netware.803/a57322_01/apbconfi.htm#443073
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-13-2002 12:27 PM
тАО06-13-2002 12:27 PM
Solution
For IPC protocol, you have to provide a key(extproc) which tell the listener to listen for external procedure.
In the sid_list_listener part of listener.ora, you need to add following entries.
(SID_DESC =
(SID_NAME = jvmtst_ep)
(ORACLE_HOME = /oracle/prod)
(ENVS = LD_LIBRARY_PATH=/oracle/prod/ctx/lib)
(PROGRAM = extproc)
In the tnsnames.ora , you need to add following entry .
EXTPROC_CONNECTION_DATA.abc.COM =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = jvmtst))
)
(CONNECT_DATA =
(SID = jvmtst_ep)
)
Where SID should match the SID_NAME which you specified in listener.ora and the KEY is the database name.
If you are not using external procedure, you can remove those entries from your listener.ora file.
AR
In the sid_list_listener part of listener.ora, you need to add following entries.
(SID_DESC =
(SID_NAME = jvmtst_ep)
(ORACLE_HOME = /oracle/prod)
(ENVS = LD_LIBRARY_PATH=/oracle/prod/ctx/lib)
(PROGRAM = extproc)
In the tnsnames.ora , you need to add following entry .
EXTPROC_CONNECTION_DATA.abc.COM =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = jvmtst))
)
(CONNECT_DATA =
(SID = jvmtst_ep)
)
Where SID should match the SID_NAME which you specified in listener.ora and the KEY is the database name.
If you are not using external procedure, you can remove those entries from your listener.ora file.
AR
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP