다운로드 받은 파일을 오라클 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
# 리눅스 9버전에서는 , 근데 'OL8' or 'OEL8' 오타인지는 잘모르겠습니다.
# 참고사이트 - https://oracle-base.com/articles/19c/oracle-db-19c-installation-on-oracle-linux-9
# https://docs.oracle.com/en/database/oracle/oracle-database/19/rnrdm/linux-platform-issues.html#GUID-9D8F6EB9-264D-479A-8F28-580E89BC6B4C
oracle@test stubs]$ pwd
/u01/app/oracle/product/19/db_1/lib/stubs
[oracle@test stubs]$ tar -xf stubs.tar
export CV_ASSUME_DISTID=OL8
- 오라클 9 버전에서는 제대로 설치가 되지 않음. 몇일간 9버전에 19c를 설치하려고 노력하였으나 오라클 자체에 집중하기 위해서 9버전에 설치는 포기하고 오라클 리눅스 8.8 에 19c 설치된 환경으로 공부를 진행하기로 함.
- 오라클 리눅스 8.8 에서 오라클 19C 정상 설치 완료
# Oracle Linux 8.8에서 Oracle 19c 설치 완료
[oracle@test db_1]$ export CV_ASSUME_DISTID=OEL7.6
[oracle@test db_1]$ ./runInstaller
Launching Oracle Database Setup Wizard...
The response file for this session can be found at:
/u01/app/oracle/product/19/db_1/install/response/db_2023-11-11_00-51-25AM.rsp
You can find the log of this install session at:
/tmp/InstallActions2023-11-11_00-51-25AM/installActions2023-11-11_00-51-25AM.log
Moved the install session logs to:
/u01/app/oraInventory/logs/InstallActions2023-11-11_00-51-25AM
[oracle@test db_1]$
재부팅 이후, 오라클 다시 실행시키는 방법
[oracle@test ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 19.0.0.0.0 - Production on Mon Nov 13 16:13:51 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 1526723608 bytes
Fixed Size 9135128 bytes
Variable Size 889192448 bytes
Database Buffers 620756992 bytes
Redo Buffers 7639040 bytes
Database mounted.
Database opened.
SQL>
참고로 sys 비밀번호를 잊었을때 접속가능한 방법이다. 보안을 위해서 오라클 설정에서 해당 기능을 중지할 수 있다.
'Database > Oracle' 카테고리의 다른 글
07 - [Oracle 19C] Oracle startup (0) | 2023.11.14 |
---|---|
06 - Oracle 19c 설치(오라클 리눅스 7.6) (0) | 2023.11.13 |
04 - OS configuration (0) | 2023.11.10 |
03 - 오라클 설치 준비 (0) | 2023.11.10 |
02 - 리눅스 기본 설정(보안 해제 및 호스트 폴더 공유) (0) | 2023.11.09 |