Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Multiple Listeners for Different Versions - Help Please

RE: Multiple Listeners for Different Versions - Help Please

From: <ddorr.cs_at_clearstream.com>
Date: Tue, 6 Jun 2000 16:10:14 +0200
Message-Id: <10520.107878@fatcity.com>


You CAN do it that way, but this is not an obligation. Below is one of our /var/opt/oracle/listener.ora file.

> ----------
> From: Michael Sun[SMTP:mikeny31_at_speakeasy.org]
> Reply To: ORACLE-L_at_fatcity.com
> Sent: Tuesday, June 06, 2000 15:59
> To: Multiple recipients of list ORACLE-L
> Subject: Re: Multiple Listeners for Different Versions - Help Please
>
> If you multiple listeners running, you need to place individual
> listener.ora
> files into each $ORACLE_HOME/network/admin directories.
>
> Michael
>
> ----- Original Message -----
> To: "Multiple recipients of list ORACLE-L" <ORACLE-L_at_fatcity.com>
> Sent: Monday, June 05, 2000 9:03 PM
>
>
> > Hi
> >
> > Our set up is as follows:
> >
> > Platform : Solaris 2.7
> > Oracle Versions : 8.0.4 & 8.0.6
> >
> > I need to configure multiple listeners for 8.0.4 and 8.0.6. Could any
> body
> > send me the copy of a listener.ora which will have multiple listeners to
> > accomodate the two different versions of Oracle running. Do I need to
> > change tnsnames.ora settings?
>


LISTENER_8 =
  (ADDRESS_LIST =

        (ADDRESS = (PROTOCOL=IPC) (KEY= ORA8.ETHER) )
        (ADDRESS = (COMMUNITY = CINET_TCP) (PROTOCOL = TCP) (Host =
servername) (Port = 1522) )
  )
STARTUP_WAIT_TIME_LISTENER_8 = 0
CONNECT_TIMEOUT_LISTENER_8 = 30
TRACE_LEVEL_LISTENER_8 = OFF
SID_LIST_LISTENER_8 =
  (SID_LIST =
    (SID_DESC = (SID_NAME = ORA8) (ORACLE_HOME = /opt/oracle/product/8.1.6) )
  )

LISTENER_7 =
  (ADDRESS_LIST =

        (ADDRESS = (PROTOCOL=IPC) (KEY= ORA7.ETHER) )
        (ADDRESS = (COMMUNITY = CINET_TCP) (PROTOCOL = TCP) (Host =
servername) (Port = 1523) )
  )
STARTUP_WAIT_TIME_LISTENER_7 = 0
CONNECT_TIMEOUT_LISTENER_7 = 30
TRACE_LEVEL_LISTENER_7 = OFF
SID_LIST_LISTENER_7 =
  (SID_LIST =
    (SID_DESC = (SID_NAME = ORA7) (ORACLE_HOME = /opt/oracle/product/7.3.4) Received on Tue Jun 06 2000 - 09:10:14 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US