問題描述:搭建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;oracle
截圖找不到了,可是報錯是:ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS;app
2.orclstd:[root@orclstd dev]# df -h 查看一下orclstd磁盤空間使用率高達98%,不知道是什麼緣由,進行排查ide
Filesystem Size Used Avail Use% Mounted onspa
/dev/sda2 35G 33G 865M 98% /日誌
/dev/sda1 99M 22M 73M 23% /bootxml
tmpfs 995M 0 995M 0% /dev/shmblog
3.[root@orclstd /]# du -h --max-depth=1 查看一下當前磁盤文件的使用狀況,發現/u01居然有25G進程
4.跟着路徑接着找,發現有一個佔2.6G的監聽日誌ci
/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幾回監聽進程,不知道是否是這個緣由,致使了大量的日誌被記錄