刪除或重新命名 listener.log 檔案的方法(轉)

xingfei80發表於2010-07-30

刪除或重新命名 listener.log 檔案的方法(轉)

As the listener.log file grows, the DBA will want to either remove or rename this log file. If you have ever tried to remove or rename the listener.log file on Windows while the TNS listener process was running you will quickly notice that Windows holds a lock on this file and returns an error:

C:> del C:oracleora92networkloglistener.log
C:oracleora92networkloglistener.log
The process cannot access the file because it is being used by another process.

Most DBAs simply stop the TNS listener process, rename (or remove) the file, then restart the TNS listener process. This can, however, cause potention connection errors for users that are attempting to connect while the listener process is down.

Even under UNIX, problems exist when attempting to rename the listener.log file while the TNS listener process is running. Just like under Windows, the Oracle TNS listener process holds an open handle to the file. Under UNIX, you CAN remove the file, but Oracle will not re-create the file when it attempts to write to it again. The TNS listener will need to be stopped and restarted in order for it to create the new listener.log file.

Well, here is a solution for renaming (or removing) the listener.log file without having to stop and start the TNS listener process under either Windows or UNIX:

[@more@]Windows:
C:> cd oracleora92networklog
C:oracleora92networklog> lsnrctl set log_status off
C:oracleora92networklog> rename listener.log listener.old
C:oracleora92networklog> lsnrctl set log_status on

UNIX:

% cd /u01/app/oracle/product/9.2.0/network/log
% lsnrctl set log_status off
% mv listener.log listener.old
% lsnrctl set log_status on

fromhttp://www.idevelopment.info/data/Oracle/DBA_tips/Networking/NET_3.shtml

--End--

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14663377/viewspace-1035706/,如需轉載,請註明出處,否則將追究法律責任。

相關文章