Load To Technical Architect
[Linux] Oracle DB 18C rpm 설치 본문
- Server Spec -
CPU - 2 Core
MEMORY - 4GB
HDD - 40G
OS - CentOS 7 minimal
※ 설치 전 주의사항 ※
rpm으로 설치 진행하면 CDB로 설치됨
1. 오라클 홈페이지에서 Oracle 18C 패키지(oracle-database-ee-18c-1.0-1.x86_64.rpm) 다운로드
2. net-tools 설치
# yum -y install net-tools
3. 의존성 패키지 설치
# curl -o oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm
# yum -y localinstall oracle-database-preinstall-18c-1.0-1.el7.x86_64.rpm
4. 패키지 설치
# rpm -ivh oracle-database-ee-18c-1.0-1.x86_64.rpm
5. Listener, Datafile 위치 설정
# vi /etc/sysconfig/oracledb_ORCLCDB-18c.conf
6. Oracle DB 설치
# /etc/init.d/oracledb_ORCLCDB-18c configure
7. 생성된 Oracle 계정 비밀번호 추가
# passwd oracle
8. oracle로 사용자 변경 후 profile에 변수 추가
# su oracle
# vi ~/.bash_profile
export ORACLE_HOME=/opt/oracle/product/18c/dbhome_1
export ORACLE_SID=ORCLCDB
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$ORACLE_HOME/bin
9. 설치 완료, sys 계정 비밀번호 수정 작업 필요
'DB > oracle' 카테고리의 다른 글
[Oracle] Oracle Critical Patch Update ( CPU ) (0) | 2021.05.28 |
---|---|
[Linux] Oracle DB 18C 설치 (0) | 2020.07.24 |
[Linux] Oracle DB 12C 인스턴스 추가 (with -silent) (0) | 2020.06.16 |
[Linux] Oracle Service 등록 (0) | 2020.06.15 |
[Linux] Oracle DB 12C 설치 (0) | 2020.06.15 |