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: another listener.ora

RE: another listener.ora

From: John Hallas <john.hallas_at_hcresources.co.uk>
Date: Wed, 03 Apr 2002 21:48:19 -0800
Message-ID: <F001.0043AA24.20020403214819@fatcity.com>


You can start several listeners from the same listener.ora file. I am not aware that you can use 2 files to start 2 listeners. I give an example below

John

###########################################################

# Listener service name LISTENER_LIVE
# Listens on service LIVE, ports 1522 and 1523
###########################################################

LISTENER_LIVE =
  (DESCRIPTION_LIST =
    (DESCRIPTION =

      (ADDRESS_LIST =
        (ADDRESS = (PROTOCOL = TCP)
          (HOST = host1)(PORT = 1522))
        (ADDRESS = (PROTOCOL = TCP)
          (HOST =host1)(PORT = 1523))
       (ADDRESS = (PROTOCOL = IPC)
          (KEY = MWO.LOCAL))
      )

    )
  )

LOG_FILE_LISTENER_LIVE = host1_listener_live.log LOG_DIRECTORY_LISTENER_LIVE = /opt/oracle/local/SqlNet/log/

TRACE_LEVEL_LISTENER_LIVE = user
TRACE_FILE_LISTENER_LIVE = host1_listener_live.trc
TRACE_DIRECTORY_LISTENER_LIVE = /opt/oracle/local/SqlNet/trc/


###########################################################

# Listener service name LISTENER_DEV (port 1529)
# Listener for DEV purposes only
###########################################################

LISTENER_DEV =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = host1)(PORT = 1529))     )
  )

LOG_FILE_LISTENER_DBAS = host1_listener_dbas.log LOG_DIRECTORY_LISTENER_DEV = /opt/oracle/local/SqlNet/log/

TRACE_LEVEL_LISTENER_DEV = off
TRACE_FILE_LISTENER_DEV = host1_listener_dev.trc
TRACE_DIRECTORY_LISTENER_DEV = /opt/oracle/local/SqlNet/trc/

STARTUP_WAIT_TIME_LISTENER_DEV = 0
CONNECT_TIMEOUT_LISTENER_DEV = 10 -----Original Message-----
Sent: 04 April 2002 01:38
To: Multiple recipients of list ORACLE-L

How can I start another listener on same box using another listener.ora file .

TIA
Bp

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: John Hallas
  INET: john.hallas_at_hcresources.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).
Received on Wed Apr 03 2002 - 23:48:19 CST

Original text of this message

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