/[vdw]/trunk/listener.ora
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/listener.ora

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations)
Sun Feb 6 05:28:38 2005 UTC (19 years, 2 months ago) by dpavlin
File size: 2143 byte(s)
initial import into svn

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 SID_LIST_LISTENER=
49 (SID_LIST=
50 (SID_DESC=
51 #BEQUEATH CONFIG
52 (GLOBAL_DBNAME=obj_srvr.wou.edu)
53 (SID_NAME=obj_srvr)
54 (ORACLE_HOME=/home/hjd)
55 # tnslsnr will look in $ORACLE_HOME/bin for PROGRAM
56 (PROGRAM = oracle_obj_srvr.pl)
57 #PRESPAWN CONFIG
58 (PRESPAWN_MAX=20)
59 (PRESPAWN_LIST=
60 (PRESPAWN_DESC=(PROTOCOL=tcp)(POOL_SIZE=1)(TIMEOUT=10))
61 )
62 )
63 )
64
65
66 # TRACE_LEVEL_<lsnr>
67 TRACE_LEVEL_LISTENER = 16
68 # Specifies desired tracing level.
69 # Default: OFF
70 # Values: OFF/USER/ADMIN/SUPPORT/0-16
71 #
72 # TRACE_LEVEL_LISTENER = SUPPORT

  ViewVC Help
Powered by ViewVC 1.1.26