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: Sseperate external procedure listeneers for 2 SIDS - Correction

Re: Sseperate external procedure listeneers for 2 SIDS - Correction

From: Terry Ball <terry_ball_at_csgsystems.com>
Date: Thu, 12 Apr 2001 10:24:51 -0700
Message-ID: <F001.002E8683.20010412102051@fatcity.com>

We do that by creating a listener for each SID. So listener would look like:

LISTENER_SID1 =
  (ADDRESS_LIST =

        (ADDRESS =
          (PROTOCOL = TCP)
          (Host = hostname)
          (Port = 1521)
        )

  )
STARTUP_WAIT_TIME_LISTENER_SID1 = 0
CONNECT_TIMEOUT_LISTENER_SID1 = 0
TRACE_LEVEL_LISTENER_SID1 = OFF
SID_LIST_LISTENER_SID1 =
  (SID_LIST =
    (SID_DESC =
(SID_NAME = SID1)
(ORACLE_HOME = /opt/app/oracle/product/8.0.6)
(PRESPAWN_MAX = 10)

    )
  )

LISTENER_SID2 =
  (ADDRESS_LIST =

        (ADDRESS =
          (PROTOCOL = TCP)
          (Host = hostname)
          (Port = 1526)
        )

  )
STARTUP_WAIT_TIME_LISTENER_SID2 = 0
CONNECT_TIMEOUT_LISTENER_SID2 = 0
TRACE_LEVEL_LISTENER_SID2 = OFF
SID_LIST_LISTENER_SID2 =
  (SID_LIST =
    (SID_DESC =
(SID_NAME = SID2)
(ORACLE_HOME = /opt/app/oracle/product/8.0.6)
(PRESPAWN_MAX = 10)

    )
  )

And tnsnames.ora would have entries for both SIDs with the corresponding port.

Terry

John Dunn wrote:

> Correction
>
> I have 2 SIDS running on my machine. I want to have a seperate external
> procedure listener for each SID.
>
> Can someone tell me what my listener.ora amd tnsnames.ora files should look
> like?
>
> Oracle is 8.1.7
>
> John
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: John Dunn
>   INET: john.dunn_at_sefas.co.uk
>
> Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California        -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Terry Ball
  INET: terry_ball_at_csgsystems.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Apr 12 2001 - 12:24:51 CDT

Original text of this message

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