問題描述:搭建DG的時候,要rman從orcl恢復到orclstd資料庫來,dup複製了半天,結果最後報錯:ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA網上找了文檔,查到是磁碟被寫滿的問題於是就解 ...
問題描述:搭建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幾次監聽進程,不知道是不是這個原因,導致了大量的日誌被記錄