|
| 1 | +# copyright (c) 1997 by the Oracle Corporation |
| 2 | +# |
| 3 | +# NAME |
| 4 | +# listener.ora |
| 5 | +# FUNCTION |
| 6 | +# Network Listener startup parameter file example |
| 7 | +# NOTES |
| 8 | +# This file contains all the parameters for listener.ora, |
| 9 | +# and could be used to configure the listener by uncommenting |
| 10 | +# and changing values. Multiple listeners can be configured |
| 11 | +# in one listener.ora, so listener.ora parameters take the form |
| 12 | +# of SID_LIST_<lsnr>, where <lsnr> is the name of the listener |
| 13 | +# this parameter refers to. All parameters and values are |
| 14 | +# case-insensitive. |
| 15 | + |
| 16 | +# <lsnr> |
| 17 | +# This parameter specifies both the name of the listener, and |
| 18 | +# it listening address(es). Other parameters for this listener |
| 19 | +# us this name in place of <lsnr>. When not specified, |
| 20 | +# the name for <lsnr> defaults to "LISTENER", with the default |
| 21 | +# address value as shown below. |
| 22 | +# |
| 23 | +# LISTENER = |
| 24 | +# (ADDRESS_LIST= |
| 25 | +# (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)) |
| 26 | +# (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY))) |
| 27 | + |
| 28 | +# SID_LIST_<lsnr> |
| 29 | +# List of services the listener knows about and can connect |
| 30 | +# clients to. There is no default. See the Net8 Administrator's |
| 31 | +# Guide for more information. |
| 32 | +# |
| 33 | +# SID_LIST_LISTENER= |
| 34 | +# (SID_LIST= |
| 35 | +# (SID_DESC= |
| 36 | +# #BEQUEATH CONFIG |
| 37 | +# (GLOBAL_DBNAME=salesdb.mycompany) |
| 38 | +# (SID_NAME=sid1) |
| 39 | +# (ORACLE_HOME=/private/app/oracle/product/8.0.3) |
| 40 | +# #PRESPAWN CONFIG |
| 41 | +# (PRESPAWN_MAX=20) |
| 42 | +# (PRESPAWN_LIST= |
| 43 | +# (PRESPAWN_DESC=(PROTOCOL=tcp)(POOL_SIZE=2)(TIMEOUT=1)) |
| 44 | +# ) |
| 45 | +# ) |
| 46 | +# ) |
| 47 | + |
| 48 | +# PASSWORDS_<lsnr> |
| 49 | +# Specifies a password to authenticate stopping the listener. |
| 50 | +# Both encrypted and plain-text values can be set. Encrypted passwords |
| 51 | +# can be set and stored using lsnrctl. |
| 52 | +# LSNRCTL> change_password |
| 53 | +# Will prompt for old and new passwords, and use encryption both |
| 54 | +# to match the old password and to set the new one. |
| 55 | +# LSNRCTL> set password |
| 56 | +# Will prompt for the new password, for authentication with |
| 57 | +# the listener. The password must be set before running the next |
| 58 | +# command. |
| 59 | +# LSNRCTL> save_config |
| 60 | +# Will save the changed password to listener.ora. These last two |
| 61 | +# steps are not necessary if SAVE_CONFIG_ON_STOP_<lsnr> is ON. |
| 62 | +# See below. |
| 63 | +# |
| 64 | +# Default: NONE |
| 65 | +# |
| 66 | +# PASSWORDS_LISTENER = 20A22647832FB454 # "foobar" |
| 67 | + |
| 68 | +# SAVE_CONFIG_ON_STOP_<lsnr> |
| 69 | +# Tells the listener to save configuration changes to listener.ora when |
| 70 | +# it shuts down. Changed parameter values will be written to the file, |
| 71 | +# while preserving formatting and comments. |
| 72 | +# Default: OFF |
| 73 | +# Values: ON/OFF |
| 74 | +# |
| 75 | +# SAVE_CONFIG_ON_STOP_LISTENER = ON |
| 76 | + |
| 77 | +# USE_PLUG_AND_PLAY_<lsnr> |
| 78 | +# Tells the listener to contact an Onames server and register itself |
| 79 | +# and its services with Onames. |
| 80 | +# Values: ON/OFF |
| 81 | +# Default: OFF |
| 82 | +# |
| 83 | +# USE_PLUG_AND_PLAY_LISTENER = ON |
| 84 | + |
| 85 | +# LOG_FILE_<lsnr> |
| 86 | +# Sets the name of the listener's log file. The .log extension |
| 87 | +# is added automatically. |
| 88 | +# Default=<lsnr> |
| 89 | +# |
| 90 | +# LOG_FILE_LISTENER = lsnr |
| 91 | + |
| 92 | +# LOG_DIRECTORY_<lsnr> |
| 93 | +# Sets the directory for the listener's log file. |
| 94 | +# Default: <oracle_home>/network/log |
| 95 | +# |
| 96 | +# LOG_DIRECTORY_LISTENER = /private/app/oracle/product/8.0.3/network/log |
| 97 | + |
| 98 | +# TRACE_LEVEL_<lsnr> |
| 99 | +# Specifies desired tracing level. |
| 100 | +# Default: OFF |
| 101 | +# Values: OFF/USER/ADMIN/SUPPORT/0-16 |
| 102 | +# |
| 103 | +# TRACE_LEVEL_LISTENER = SUPPORT |
| 104 | + |
| 105 | +# TRACE_FILE_<lsnr> |
| 106 | +# Sets the name of the listener's trace file. The .trc extension |
| 107 | +# is added automatically. |
| 108 | +# Default: <lsnr> |
| 109 | +# |
| 110 | +# TRACE_FILE_LISTENER = lsnr |
| 111 | + |
| 112 | +# TRACE_DIRECTORY_<lsnr> |
| 113 | +# Sets the directory for the listener's trace file. |
| 114 | +# Default: <oracle_home>/network/trace |
| 115 | +# |
| 116 | +# TRACE_DIRECTORY_LISTENER=/private/app/oracle/product/8.0.3/network/trace |
| 117 | +# CONNECT_TIMEOUT_<lsnr> |
| 118 | +# Sets the number of seconds that the listener waits to get a |
| 119 | +# valid database query after it has been started. |
| 120 | +# Default: 10 |
| 121 | +# |
| 122 | +# CONNECT_TIMEOUT_LISTENER=10 |
| 123 | + |
0 commit comments