Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Multiple Instances
On Thu, 24 Jun 1999 11:04:42 +0200, Kekko <dini.f_at_adr.it> wrote:
Hi Kekko,
>I would know which are the correct steps for creating another instance >(Rel. 7.3.4 on HP UX 10.20). In particular how can I modify the actual >listener.ora? >Thanks >Kekko >
Here is an example for multi instance listener. Normally the standard listener is used for all (three) instances, but under some circumstances it's useful to have them separated. If you need to set up with MTS please repost.
The databases are ABC, XYZ and JOLY.
#--------------------------------------------------------------# Listener JOLY (only for JOLY)
#-------------------------------------------------------------- L_JOLY= (ADDRESS_LIST=
(ADDRESS=
(PROTOCOL=IPC) (KEY=JOLY) )
(ADDRESS=
(PROTOCOL=IPC) (KEY=JOLY.WORLD) )
(ADDRESS=
(COMMUNITY=TCP_COM.WORLD) (PROTOCOL=TCP) (Host=z.z.z.z) (Port=1521) )
(ADDRESS=
(COMMUNITY=TCP_COM.WORLD) (PROTOCOL=TCP) (Host=x.x.x.x) (Port=1521) ) )
# TRACE_DIRECTORY_L_JOLY=/u01/app/oracle/product/7.3.4/network/trace # TRACE_FILE_L_JOLY=l_JOLY.trc # LOG_DIRECTORY_L_JOLY=/u01/app/oralce/product/7.3.4/network/log # LOG_FILE_L_JOLY=l_JOLY.log SID_LIST_L_JOLY= (SID_LIST=# Listener XYZ (only for XYZ)
(SID_DESC=
(SID_NAME=JOLY) (ORACLE_HOME=/u01/app/oracle/product/7.3.4) ) ) #--------------------------------------------------------------
#-------------------------------------------------------------- L_XYZ= (ADDRESS_LIST=
(ADDRESS=
(PROTOCOL=IPC) (KEY=XYZ) )
(ADDRESS=
(PROTOCOL=IPC) (KEY=XYZ.WORLD) )
(ADDRESS=
(COMMUNITY=TCP_COM.WORLD) (PROTOCOL=TCP) (Host=z.z.z.z) (Port=1521) )
(ADDRESS=
(COMMUNITY=TCP_COM.WORLD) (PROTOCOL=TCP) (Host=x.x.x.x) (Port=1521) ) )
# TRACE_DIRECTORY_L_XYZ=/u01/app/oracle/product/7.3.4/network/trace # TRACE_FILE_L_XYZ=l_XYZ.trc # LOG_DIRECTORY_L_XYZ=/u01/app/oralce/product/7.3.4/network/log # LOG_FILE_L_XYZ=l_XYZ.log SID_LIST_L_XYZ= (SID_LIST=
(SID_DESC=
(SID_NAME=XYZ) (ORACLE_HOME=/u01/app/oracle/product/7.3.4) ) )
![]() |
![]() |