본문 바로가기

리눅스

CentOS 4에서 Oracle Database 11g R2를 설치하는 방법

반응형

CentOS 4에서 Oracle Database 11g R2를 설치하는 방법

1. 필요한 패키지 설치

yum -y install compat-libstdc++-33 binutils elfutils-libelf elfutils-libelf-devel
yum -y install glibc glibc-common glibc-devel glibc-headers gcc gcc-c++ libaio-devel
yum -y install libaio libgcc libstdc++ libstdc++ make sysstat unixODBC unixODBC-devel
yum -y install unzip

2. Oracle 사용자 및 그룹 생성

groupadd oinstall
groupadd dba
useradd -g oinstall -G dba oracle
passwd oracle

3. VNC 서버 설치

필요한 경우 VNC 서버를 설치하고 구성합니다.

4. 커널 및 시스템 설정

  • /etc/sysctl.conf 파일 수정
vim /etc/sysctl.conf
kernel.shmall = 4294967296
kernel.shmmax = 68719476736
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.aio-max-nr = 1048576
fs.file-max = 6815744
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586
728x90
  • /etc/security/limits.conf 파일 수정
vim /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nofile 65536
oracle soft nproc 16384
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240
oracle soft memlock unlimited
oracle hard memlock unlimited

5. 디렉토리 및 권한 설정

mkdir -p /DATA/oracle
chown -R oracle:oinstall /DATA/oracle
chmod -R 775 /DATA/oracle
mkdir -p /DATA/oraInventory
chown -R oracle:oinstall /DATA/oraInventory
chmod -R 775 /DATA/oraInventory

6. Oracle Database 소프트웨어 다운로드 및 압축 해제

cd /DATA/oracle
unzip linux.x64_11gR2_database_2of2.zip
unzip linux.x64_11gR2_database_2of2.zip

7. Oracle 사용자 환경 설정

  • /home/oracle/.bash_profile 파일 수정
vim /home/oracle/.bash_profile
export TMP=/tmp
export TMPDIR=$TMP
export ORACLE_BASE=/DATA/oracle
export ORACLE_SID=ORCL
export ORACLE_HOME=/DATA/oracle/dbhome
export ORACLE_HOME_LISTNER=$ORACLE_HOME/bin/lsnrctl

8. Oracle Database 설치

./runInstaller

 

Oracle Database 설치 마법사를 통해 원하는 설정을 수행하실 수 있습니다.

 

728x90
반응형