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

Home -> Community -> Usenet -> c.d.o.server -> Re: How to configure listener to 2 different versions of oracle on the same machine

Re: How to configure listener to 2 different versions of oracle on the same machine

From: Alex Filonov <afilonov_at_pro-ns.net>
Date: Thu, 01 Feb 2001 04:59:49 GMT
Message-ID: <95aqg3$qh4$1@nnrp1.deja.com>

This is an example of listener.ora file servicing 3 databases, 2 8.0.5 and 1 8.1.6:

#
LISTENER =
  (ADDRESS_LIST =

	(ADDRESS= (PROTOCOL= IPC)(KEY= oracle))
        (ADDRESS= (PROTOCOL= IPC)(KEY= test01))
        (ADDRESS= (PROTOCOL= IPC)(KEY= test8i))
        (ADDRESS= (PROTOCOL= TCP)(Host= localhost.localdomain)(Port=
1521))
  )
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
(ORACLE_HOME= /home/oracle/base/app/oracle/product/8.0.5)
(SID_NAME = oracle)

    )
    (SID_DESC =
(ORACLE_HOME= /home/oracle/base/app/oracle/product/8.0.5)
(SID_NAME = test01)

    )
    (SID_DESC =
(ORACLE_HOME= /home/oracle/base/app/oracle/product/8.1.6)
(SID_NAME = test8i)

    )
  )
STARTUP_WAIT_TIME_LISTENER = 0
CONNECT_TIMEOUT_LISTENER = 10
TRACE_LEVEL_LISTENER = OFF In article <959g4i$jue$1_at_nnrp1.deja.com>,   Alex Filonov <afilonov_at_pro-ns.net> wrote:
> 8.0.5 listener can service both databases too. I'll send you example
> later. All you need is to copy info from listener.ora file you created
> on one database to listener.ora file of the listener you want to use.
>
> In article <3a770239$0$7806_at_wodc7nh7.news.uu.net>,
>   "SG" <sajnish_gupta_at_yahoo.com> wrote:
> > Hi,
> > We have Oracle 8.0.5 and Oracle8i installed on the same Solaris
 machine.
> > Both are working fine, except for the listener. I heard we do not  have
 to
> > have both the listener versions running, only one is suffice  (Oracle8i
 in
> > this case).
> > Can anyone give me an example how to configure this. Your help is  much
> > appricated.
> >
> > Sajnish
> >
> >
>
> Sent via Deja.com
> http://www.deja.com/
>


Sent via Deja.com
http://www.deja.com/ Received on Wed Jan 31 2001 - 22:59:49 CST

Original text of this message

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