ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated ORA-01262: Stat failed on a file destination directory

2022. 2. 8. 17:28IT

728x90

오라클 기동시 아래와 같은 오류가 날 때

 

ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
ORA-01262: Stat failed on a file destination directory

 

터미널로 접속해서 기동해 보면.....

SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 8 16:56:11 2022

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

SQL> connect /as sysdba
Connected to an idle instance.
SQL> startup
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
ORA-01262: Stat failed on a file destination directory
Linux-x86_64 Error: 2: No such file or directory

위와 같은 오류에 봉착한다...

 

 

그렇다면 일단 pfile 경로 아래의 init.ora.xxxxx 파일을 찾는다.

/u01/app/oracle/admin/orcl/pfile
-- 참고 : 오라클을 설치한 환경에 따라 다름

 

그리고 해당 경로의 파일이름으로 mount해서 instance를 기동할 수 있다.

SQL> startup mount pfile=/u01/app/oracle/admin/orcl/pfile/init.ora.22020190918;
ORACLE instance started.

Total System Global Area 1603411968 bytes
Fixed Size                  2213776 bytes
Variable Size             402655344 bytes
Database Buffers         1191182336 bytes
Redo Buffers                7360512 bytes
Database mounted.


SQL> alter database open;

Database altered.

이렇게 해주었더니 다시 살아 났다.

 

참고하시길..

반응형