Login  Register

Re: listener.log

Posted by ErmanArslansOracleBlog on Apr 12, 2021; 1:32pm
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/listener-log-tp9588p9609.html

You are on AIX right..

Try with the following;

cd /u01
find .  -name '*listener*' -print

What is the output?

Also check the listener's config.. Maybe, logging to listener.log is disable there..

Connect  to the listener with lsnrctl and check the config..

LSNRCTL>set current_listener <listener_name> (if not using default LISTENER)
LSNRCTL>show log_status

If not enabled you can enable logging with the following;

LSNRCTL>set current_listener <listener_name> (if not using default LISTENER)
LSNRCTL>set LOG_STATUS on
LSNRTCTL>save_config

You can also try disabling and enabling the log_status..
LSNRCTL>set LOG_STATUS off
LSNRCTL>set LOG_STATUS on
LSNRCTL>save_config

You can try this as well..