Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Listener start very slooooow
Just did an Oracle 10g install on SLES 9, after rebooting it seems to stew
for a long time starting the listener and but completes after about five
minutes (dbstart succeeds just fine). The only hint to what is the cause
of this long delay starting seems to be the last line in the listener.log
file:
"WARNING: Subscription for node down event still pending"
The only thing I did post-install was to disable the CRS services via the script ($ORACLE_HOME/bin/localconfig delete)... does CRS have to be enabled and running for the listener to start/work properly?
sqlnet.ora---------------------------------NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
listener.ora-------------------------------# listener.ora Network Configuration
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/app/oracle/product/10.1.0/Db_1)
(PROGRAM = extproc)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = wk01.??????.com)(PORT = 1521)) )
tnsnames.ora-------------------------------# tnsnames.ora Network Configuration
DB01 =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = wk01.??????.com)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = db01)
)
)
EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)
![]() |
![]() |