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 -> problem with listener on oracle 8.1.7

problem with listener on oracle 8.1.7

From: VasantKumar Naidu <vask001_at_yahoo.com>
Date: 26 Jul 2003 00:55:47 -0700
Message-ID: <d9a73221.0307252355.4106b134@posting.google.com>


Hi,

I have a problem:

I am running SCO Unixware 7 with Oracle8i (8.1.7.0.0). The system is running fine but I am facing this problem.

When I start the listener, it starts successfully and give the following summary:

Services Summary...

  cbi		has 1 service handler(s)
  PLSExtProc	has 1 service handler(s)

The command completed successfully

But when I connect to the database through the tnsnames.ora file:

I get the following when I check for the listener status on the server.

Services Summary...

  cbi		has 3 service handler(s)
  PLSExtProc	has 1 service handler(s)
  cbi		has 3 service handler(s)
  cbi		has 3 service handler(s)

The command completed successfully

Why does this happen, sometimes the transaction stop, the query hangs but the if I restart the listener everything is fine for the sometime.

I am giving the configuration of my listener file below:

listener.ora



LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
(ADDRESS_LIST =
        (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
      )

(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.1.179)(PORT = 1521)) )

    )
    (DESCRIPTION =
(PROTOCOL_STACK =
        (PRESENTATION = GIOP)
        (SESSION = RAW)
      )

(ADDRESS = (PROTOCOL = TCP)(HOST = cbicpp)(PORT = 2481))
    )
  )

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /home/app/oracle/product/817)
(PROGRAM = extproc)

    )
    (SID_DESC =
(GLOBAL_DBNAME = cbi)
(ORACLE_HOME = /home/app/oracle/product/817)
(SID_NAME = cbi)

    )
  )


below is the tnsnames.ora file from my server:

tnsnames.ora



INST1_HTTP =
  (DESCRIPTION =
    (ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = cbicpp)(PORT = 1521))
    )
    (CONNECT_DATA =
(SERVER = SHARED)
(SERVICE_NAME = cbi)
(PRESENTATION = http://admin)

    )
  )

EXTPROC_CONNECTION_DATA =
  (DESCRIPTION =
    (ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    )
    (CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)

    )
  )

CBI =
  (DESCRIPTION =
    (ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = cbicpp)(PORT = 1521))
    )
    (CONNECT_DATA =
(SERVICE_NAME = cbi)

    )
  ) Received on Sat Jul 26 2003 - 02:55:47 CDT

Original text of this message

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