Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 하둡
- tibero
- sql연산자
- 오라클복구
- hadoop명령어
- Linux
- Standalone
- zookeeper
- Kafka
- recovery
- sql처리순서
- hadoop
- ORA-01034
- window업데이트
- initorcl
- nomount
- crash recovery
- 에러
- 오라클
- oracle
- 설치
- 실습
- 카프카 사용
- 카프카
- 완전분산환경
- 하둡설치
- centos7
- 결합연산자
- ORA-27101
- 하둡권한변경
Archives
- Today
- Total
IT 꿈나무의 일상
오라클 파라미터 파일 손상으로 인한 복구방법 본문
반응형
# 서버다운으로 인해 오라클 접속시 다음과 같은 에러가 발생하였다.
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3701
Additional information: -446465241
Process ID: 0
Session ID: 0 Serial number: 0
오류를 검색하여보니 갑작스러운 종료로 인해 오라클 파라미터 파일이 손상되어 발생하는 현상이였다.
그렇다면 해결책은 파라미터 파일을 재생성해줘야 한다.
1. 해당 경로로 이동
[oracle@localhost ~]$ cd $ORACLE_HOME/dbs
[oracle@localhost dbs]$ ls
D:devoradata c:oracleaaa.csv hc_orcl.dat init.ora lkORCL orapworcl spfileorcl.ora
|
2. 오라클 접속하여 파라미터 파일 생성
[oracle@localhost dbs]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Tue Nov 30 11:16:26 2021
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Connected to an idle instance.
SQL> create pfile from spfile;
File created.
|
3. 오라클 종료 후 initorcl.ora 파일 수정
[oracle@localhost dbs]$ vi initorcl.ora #db_recovery_file_dest ~ # 주석처리 #db_recovery_file_dest ~ # 주석처리 |
4. 다시 오라클 접속하여 pfile 마운트 후 데이터베이스 오픈 후 spfile 생성
SQL> startup mount pfile=initorcl.ora
ORACLE instance started.
Total System Global Area 2432696320 bytes Fixed Size 8795664 bytes
Variable Size 671091184 bytes
Database Buffers 1744830464 bytes
Redo Buffers 7979008 bytes
Database mounted.
SQL> alter database flashback off;
Database altered.
SQL> alter database open;
Database altered.
SQL> create pfile from spfile;
File created.
|
5. 완료 후 DB instance 상태 확인
SQL> select status from v$instance;
STATUS
------------
OPEN
|
반응형
'DB' 카테고리의 다른 글
[Tibero] 체크포인트와 TSN (Tibero System Number) (1) | 2023.10.27 |
---|---|
[Tibero] Boot Mode 단계에 따른 동작 확인 (0) | 2023.09.18 |
[ORACLE] JOIN과 숫자함수, 문자함수 실습 (0) | 2021.08.08 |
[ORACLE] SQL 연산자 (비교 / 결합 / in /any / exists ) 실습 (0) | 2021.08.08 |
[ORACLE] where절과 having절 실습 (0) | 2021.08.08 |
Comments