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 - Correcti

RE: Sseperate external procedure listeneers for 2 SIDS - Correcti

From: Toepke, Kevin M <ktoepke_at_cms.cendant.com>
Date: Fri, 13 Apr 2001 04:34:17 -0700
Message-ID: <F001.002E8FF8.20010413041531@fatcity.com>

mysid_lis =
  (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= mysid)     )
(ADDRESS=
(PROTOCOL= TCP)
(Host= myhost.mynet.com)
(Port= 1525)

     )
  )
STARTUP_WAIT_TIME_mysid_Lis = 0
CONNECT_TIMEOUT_mysid_Lis = 10
TRACE_LEVEL_mysid_Lis = OFF
SID_LIST_mysid_Lis =
  (SID_LIST =
(SID_DESC =

       (SID_NAME = mysid)
       (ORACLE_HOME = /opt/oracle/product/8.1.6)
       (GLOBAL_DBNAME= myhost.mynet.com.)
     )

)
yoursid_lis =
  (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= yoursid)     )
(ADDRESS=
(PROTOCOL= TCP)
(Host= myhost.mynet.com)
(Port= 1525)

     )
  )
STARTUP_WAIT_TIME_mysid_Lis = 0
CONNECT_TIMEOUT_mysid_Lis = 10
TRACE_LEVEL_mysid_Lis = OFF
SID_LIST_mysid_Lis =
  (SID_LIST =
(SID_DESC =
       (SID_NAME = yoursid)
       (ORACLE_HOME = /opt/oracle/product/8.1.6)
       (GLOBAL_DBNAME= mysid.mynet.com.)
     )

)
Kevin Toepke

The information in this electronic mail message is Cendant Confidential and may be legally privileged. It is intended solely for the addressee(s). Access to this Internet electronic mail message by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or action taken or omitted to be taken in reliance on it is prohibited and may be unlawful.

The sender believes that this E-mail and any attachments were free of any virus, worm, Trojan horse, and/or malicious code when sent. This message and its attachments could have been infected during transmission. By reading the message and opening any attachments, the recipient accepts full responsibility for taking protective and remedial action about viruses and other defects. Cendant Corporation is not liable for any loss or damage arising in any way from this message or its attachments.

-----Original Message-----
Sent: Friday, April 13, 2001 7:10 AM
To: Multiple recipients of list ORACLE-L Correcti

Thanks...but how to create 2 seperate external listeners, one for each SID?

John

> -----Original Message-----
> From:Pampati, Kiran [SMTP:kpampati_at_cybersource.com]
> Sent:12 April 2001 23:11
> To:   Multiple recipients of list ORACLE-L
> Subject:      RE: Sseperate external procedure listeneers for 2 SIDS -
> Correcti
>
> Once you create two separate listeners for each SID, you can start and
> stop
> each listener separately from command line
>
> lsnrctl start/stop  <listener_name>
>
> -----Original Message-----
> Sent: Thursday, April 12, 2001 12:01 PM
> To: Multiple recipients of list ORACLE-L
> Correcti
>
>
> But for each SID I need an external proedure listener that I can start
> seperately from the standard listener.
>
> John
>
> > -----Original Message-----
> > From:       Terry Ball [SMTP:terry_ball_at_csgsystems.com]
> > Sent:       12 April 2001 19:21
> > To:Multiple recipients of list ORACLE-L
> > Subject:    Re: Sseperate external procedure listeneers for 2 SIDS -
> > Correction
> >
> > 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).
> --
> 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: Pampati, Kiran
>   INET: kpampati_at_cybersource.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).
--
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: Toepke, Kevin M
  INET: ktoepke_at_cms.cendant.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 Fri Apr 13 2001 - 06:34:17 CDT

Original text of this message

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