共计 1565 个字符,预计需要花费 4 分钟才能阅读完成。
环境:
OS:HP-UNIX
数据库:11.2.0.4 双机 RAC
(一)现象
在清理 Oracle 日志的时候,发现在 $ORACLE_HOME/log/{instance_id}/client 下面存在大量的 clsc*.log。经过观察,发现每隔 5 分钟产生 2 个日志,具体如下:
…
-rw-r–r– 1 oracle oinstall 244 Sep 25 15:55 clsc34691.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 15:55 clsc34692.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:00 clsc34693.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:00 clsc34694.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:05 clsc34695.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:05 clsc34696.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:10 clsc34697.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:10 clsc34698.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:15 clsc34699.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:15 clsc34700.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:20 clsc34701.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:25 clsc34702.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:30 clsc34703.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:35 clsc34704.log
-rw-r–r– 1 oracle oinstall 244 Sep 25 16:40 clsc34705.log
…
查看日志数量,发现已经有很多了
fabdb1$[/grid/11.2.0/grid/log/fabdb1/client]ll |wc -l
34709
(二)原因
发现这是 Oracle 在 11.2 中的 bug,在开启 Oracle EM 的情况下,EM 会每隔 5 分钟使用 crs_stat 去收集 Oracle 服务的状态,导致日志的产生。
(三)解决方案
以 oracle 用户登录,到目录下:
$ORACLE_HOME/sysman/admin/scripts/
修改 2 个文件:
① vim crs_resources.pl
# 找到这一行:
my $cmd = “$crs_home/bin/crs_stat”;
# 修改为:
my $cmd = “$crs_home/bin/crsctl stat res”;
② vim crs_vip.pl
# 找到这一行:
my $cmd = “$crs_home/bin/crs_stat”;
# 修改为:
my $cmd = “$crs_home/bin/crsctl stat res”;
重启 EM
emctl stop dbconsole
emctl start dbconsole
su – grid
cd $ORACLE_HOME/log/{instance_name}/client
ls -lrt – 持续监控半小时,检查是否有规律产生日志文件。
更多 Oracle 相关信息见 Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-10/147233.htm