In terms of rapid growth do you have an application that is constantly running (ie, 24x7) or that consistently times out? Check metalink as there a couple of queries on this specific topic - all of which point to an application trying to access the database and for various reasons creating multiple connections, closing them, then opening them again, or failing to connect properly, etc.
LSNRCTL> show trc_level
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxxxxxxx.com)(PORT=1521)))
LISTENER parameter "trc_level" set to off
The command completed successfully
LSNRCTL> trace user
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxxxxxx.com)(PORT=1521)))
Opened trace file: /opt/oracle/product/8.1.6/network/trace/listener.trc
The command completed successfully
LSNRCTL> show trc_level
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxxxxxx.com)(PORT=1521)))
LISTENER parameter "trc_level" set to user
The command completed successfully
LSNRCTL> trace off
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxxxxxx.com)(PORT=1521)))
The command completed successfully
LSNRCTL> show trc_level
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxxxxxx.com)(PORT=1521)))
LISTENER parameter "trc_level" set to off
The command completed successfully
if u don't want a lot of log records in listener.log file set:
LSNRCTL> trace off
or
LSNRCTL> trace user
Yes .. This is very normal.. I get more than 2mb of file generation of listener.log everyday and I just delete the same with lsnrctl stop, inode off, lsnrctl start or using /dev/null.
If you need more info, I guess Jeff answered clearly for the same Question I had on Jul 25th..
Bookmarks