Technical posts/Oracle

[Preparing DBMS Benchmark] Install Oracle 12.2.0.1 on CentOS 7.2

ODB 2017. 8. 4. 15:37

[Preparing DBMS Benchmark] Install Oracle 12.2.0.1 on CentOS 7.2


대망의 오라클 !


제일 오래걸리고 용량 제일 크고...... 으그..


http://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html


여기서 다운받자


12.2.0.1이 가장 최신인듯 하다.. 메타링크 들어가도 상위버전이 없다


설치는 아래링크로 가서 설치를 하도록 하자


https://oracle-base.com/articles/12c/oracle-db-12cr1-installation-on-oracle-linux-7


오라클은 유독 복잡하기에 다 써내려 가려니 마음이 답답해서 포스팅을 못하겠다 ㅎㅎ


.bash_profile

# .bash_profile


# Get the aliases and functions

if [ -f ~/.bashrc ]; then

. ~/.bashrc

fi


# User specific environment and startup programs


PATH=$PATH:$HOME/.local/bin:$HOME/bin


export PATH


export TMP=/tmp

export TMPDIR=$TMP


export ORACLE_HOSTNAME=oracle

export ORACLE_UNQNAME=ORAT12

export ORACLE_BASE=/oracle/product

export ORACLE_HOME=$ORACLE_BASE/db_1

export ORACLE_SID=orat12


export PATH=/usr/sbin:/usr/local/bin:$PATH

export PATH=$ORACLE_HOME/bin:$PATH


export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib


export DISPLAY=192.168.200.1:0.0


끝!


"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."