Invalid file system control data detected

最近發現有個庫老自己down掉,查看報警日誌文件有如下報錯:

IBM AIX RISC System/6000 Error: 5: I/O error

Additional information: 8

Additional information: 238419

Non critical error ORA-00001 caught while writing to trace file "/oracle/diag/rdbms/dbweb/dbweb/trace/dbweb_mmon_12058738.trc

"

Error message: IBM AIX RISC System/6000 Error: 89: Invalid file system control data detected

Additional information: 1

Writing to the above trace file is disabled for now on...

Errors in file /oracle/diag/rdbms/dbweb/dbweb/trace/dbweb_lgwr_10682440.trc:

ORA-00340: IO error processing online log 3 of thread 1

ORA-00345: redo log write error block 238419 count 2

ORA-00312: online log 3 thread 1: '/oradata/dbweb/redo31.log'

ORA-27072: File I/O error

 

Additional information: 8

Additional information: 238419

LGWR (ospid: 10682440): terminating the instance due to error 340

Thu Mar 24 22:00:56 2011

System state dump requested by (instance=1, osid=10682440 (LGWR)), summary=[abnormal instance termination].

System State dumped to trace file /oracle/diag/rdbms/dbweb/dbweb/trace/dbweb_diag_16515214.trc

Dumping diagnostic data in directory=[cdmp_20110324220056], requested by (instance=1, osid=10682440 (LGWR)), summary=[abnorma

l instance termination].

Instance terminated by LGWR, pid = 10682440

 

看報錯感覺是操作系統層面上的有問題,在操作系統上做vi,touch都會報Invalid file system control data detected錯誤。

 

文件系統可用空間也都足夠,後經上網查看有可能是文件系統有問題,需要fscs文件系統修復。

 

後經修復臨時表空間,oracle安裝目錄和oracle數據文件目錄後才正常使用…… @_@。

 


  fuser -kuc /tmp

  fuser -kuc /oracle

  fuser -kuc /oradata

 
  
  umount /tmp
  umount /oracle

  umount /oradata
  
  fsck -y /app

  fsck -y /oracle

  fsck -y /oradata

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章