ORA-00119: invalid specification for system parameter LOCAL_LISTENER
Hi,
I am getting errors while starting up my database using command 'STARTUP'
ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00132: syntax error or unresolved network name 'LISTENER_ORCL2'
Please have a look on sqlnet.ora , tnsnames.ora, listener.ora
sqlnet.ora
# sqlnet.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\sqlnet.ora
# Generated by Oracle configuration tools.
# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES= (NONE)
#NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
NAMES.DEFAULT_DOMAIN=snr.babu.com
SQLNET.EXPIRE_TIME=10
tnsnames.ora
# tnsnames.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.
LISTENER_ORCL2 =
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))
ORCL2 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl2)
)
)
ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST =snr.babu.com)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
)
)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)
listener.ora
# listener.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = c:\oracle\product\10.2.0\db_2)
(PROGRAM = extproc)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))
)
)
Thanks in Advance
Try to modify your tnsnames.ora entry to the following:
Code:
LISTENER_ORCL2 =
(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522)))
@ebrian what's the difference? That's already there
@poster
try to change LISTENER_ORCL2 to LISTENER_ORCL2.snr.babu.com in the tnsnames.ora and let su know if it works
Regards
Originally Posted by
Bore
@ebrian what's the difference? That's already there
It's like that game, "What's different between these two pictures?". Take a look again.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Click Here to Expand Forum to Full Width
Bookmarks