오라클 리눅스 7.6 이 필요한 경우는 아래의 절차를 참고하면 됩니다.
다운로드 받은 파일을 오라클 19.3 버전을 복사한다.
위치는 /u01/app/oracle/product/19/db_1/ 폴더로 복사한다.
[oracle@test db_1]$ unzip LINUX.X64_193000_db_home.zip
설치할때 오류가 발생해서 아래처럼 설정을 변경함.
[oracle@test db_1]$
[oracle@test db_1]$ vi /u01/app/oracle/product/19/db_1/cv/admin/cvu_config
[oracle@test db_1]$
# Fallback to this distribution id
#CV_ASSUME_DISTID=OEL5
# 리눅스 7버전에서는 해당 트릭을 사용할 필요가 없음
# 리눅스 8버전에서는
# 참고사이트 - https://oracle-base.com/articles/19c/oracle-db-19c-installation-on-oracle-linux-8
export CV_ASSUME_DISTID=OEL7.6
- 오라클 리눅스 7.6 에서 오라클 19C 정상 설치 완료
# Oracle Linux 7.6에서 Oracle 19c 설치 완료
[oracle@test db_1]$ ./runInstaller
Launching Oracle Database Setup Wizard...
[oracle@test db_1]$
재부팅 이후, 오라클 다시 실행시키는 방법
[oracle@test admin]$ sqlplus "/as sysdba"
SQL*Plus: Release 19.0.0.0.0 - Production on Mon Nov 13 16:08:48 2023
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup;
ORACLE instance started.
Total System Global Area 1543500872 bytes
Fixed Size 9135176 bytes
Variable Size 889192448 bytes
Database Buffers 637534208 bytes
Redo Buffers 7639040 bytes
Database mounted.
Database opened.
SQL> SP2-0223: No lines in SQL buffer.
SQL>
참고로 sys 비밀번호를 잊었을때 접속가능한 방법이다. 보안을 위해서 오라클 설정에서 해당 기능을 중지할 수 있다.
'Database > Oracle' 카테고리의 다른 글
08 - [Oracle 19C] Oracle shutdown (0) | 2023.11.14 |
---|---|
07 - [Oracle 19C] Oracle startup (0) | 2023.11.14 |
05 - Oracle 19c 설치(오라클 리눅스 8.8) (0) | 2023.11.10 |
04 - OS configuration (0) | 2023.11.10 |
03 - 오라클 설치 준비 (0) | 2023.11.10 |