共计 1600 个字符,预计需要花费 4 分钟才能阅读完成。
问题描述:搭建 DG 的时候,要 rman 从 orcl 恢复到 orclstd 数据库来,dup 复制了半天,结果最后报错:ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA 网上找了文档,查到是磁盘被写满的问题于是就解决一下。
1.rman target sys/410526@orcl auxiliary sys/410526@orclstd
duplicate target database for standby from active database nofilenamecheck;
截图找不到了,但是报错是:ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS;
2.orclstd:[root@orclstd dev]# df -h 查看一下 orclstd 磁盘空间使用率高达 98%,不知道是什么原因,进行排查
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 35G 33G 865M 98% /
/dev/sda1 99M 22M 73M 23% /boot
tmpfs 995M 0 995M 0% /dev/shm
3.[root@orclstd /]# du -h –max-depth=1 查看一下当前磁盘文件的使用情况,发现 /u01 竟然有 25G
4. 跟着路径接着找,发现有一个占 2.6G 的监听日志
/u01/app/Oracle/product/11.2.0/dbhome_1/network/trace/listener.log
5. 删掉监听日志,
[root@orclstd trace]# rm listener.log
6. 继续查看有没有其他比较大文件,发现 alert 日志中,有大量的 log.xml 文件产生
[root@orclstd trace]# cd ..
[root@orclstd listener]# ls
alert cdump incident incpkg lck metadata metadata_dgif metadata_pv stage sweep trace
[root@orclstd listener]# cd alert/
[root@orclstd alert]# ls
7. 查看一下总量大小,大概有 16 个 G,把我的磁盘空间都占满了,暂时想不清楚原因,先删掉.xml
[root@orclstd alert]# du -sh
16G .
8. 删掉 log.xml 文件
[root@orclstd alert]# rm *.xml
rm: remove regular file `log_1000.xml’? ^C
[root@orclstd alert]# rm -f *.xml
8. 重新查看磁盘空间, 有种瞬间被释放的感觉,user% 降到了 44%
df -h
[root@orclstd alert]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 35G 15G 19G 44% /
/dev/sda1 99M 22M 73M 23% /boot
tmpfs 995M 0 995M 0% /dev/shm
9. 之前 rman 的时候已经导入过来库的文件了,所以现在 orclstd 备库已经可以启动到 mount 状态了,现在把备库 orclstd 更改到 nomount 状态,现在重新 rman 导入已经没有问题了。
10. 不清楚怎么会产生这么大的监听文件,以及可能被记录的日志,想起来昨天 lsnrctl start 的时候一直 connecting to 不起来,中间又 killed 几次监听进程,不知道是不是这个原因,导致了大量的日志被记录
: