Pages

Monday, November 12, 2012

ORA-00119 ORA-00132


during startup, faced below errors..?


ORA-00119: invalid specification for system parameter LOCAL_LISTENER

ORA-00132: syntax error or unresolved network name 'LISTENER_AZE'



Cause: non-default listener port number.

Solution: add an entry in tnsnames.ora mentioning non-default port. (blue text below)

 Note: Please avoid using port 0-1023 [ IANA range]


----------------------tnsnames.ora-------------------------


# tnsnames.ora Network Configuration File:
# D:\app\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.

AZE =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = MAC1)(PORT = 1555))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = aze)
    )
  )

ORACLR_CONNECTION_DATA =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1555))
    )
    (CONNECT_DATA =
      (SID = CLRExtProc)
      (PRESENTATION = RO)
    )
  )

LISTENER_AZE =
  (ADDRESS = (PROTOCOL = TCP)(HOST = MAC1)(PORT = 1555))





-------------------- listener.ora --------------------------



# listener.ora Network Configuration File:
# D:\app\product\11.2.0\dbhome_1\network\admin\listener.ora
# Generated by Oracle configuration tools.

LISTENER_AZE =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = MAC1)(PORT = 1555))
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1555))
    )
  )

ADR_BASE_LISTENER_AZE = D:\app\

SID_LIST_LISTENER_AZE =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = D:\app\product\11.2.0\dbhome_1)
      (PROGRAM = extproc)
      (ENVS = "EXTPROC_DLLS=ONLY:D:\app\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    )
  )
------------------------------------------------------------


No comments:

Post a Comment