I've got this strange error when static listener configuration was used. After modifying listener.ora the listener was unable to start. The static configuration was as the following :
sid_list_listener =
(sid_list=
(sid_desc=
(global_dbname = cdbrest3)
(oracle_home = /u01/app/oracle/product/19/db_1913)
)
)
The issue was resolved after adding SID_NAME into configuration :
sid_list_listener =
(sid_list=
(sid_desc=
(sid_name = cdbrest3)
(global_dbname = cdbrest3)
(oracle_home = /u01/app/oracle/product/19/db_1913)
)
)
As result the listener was able for being reloaded or restarted.
Good Luck !
No comments:
Post a Comment