Load To Technical Architect

[Linux] Oracle DB 18C rpm 설치 본문

DB/oracle

[Linux] Oracle DB 18C rpm 설치

고지식한청춘 2020. 7. 24. 11:10
728x90

- 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 계정 비밀번호 수정 작업 필요

728x90
Comments