100% found this document useful (2 votes)
3K views

Oracle10g Installation On Linux

This document provides instructions for installing Oracle 10G on Red Hat Enterprise Linux 4. It involves creating an oracle user and groups, setting kernel parameters and limits in sysctl.conf, configuring the oracle user's environment variables for Oracle homes and SID, unzipping the Oracle installation files, and running the installer as the oracle user.

Uploaded by

arun
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
100% found this document useful (2 votes)
3K views

Oracle10g Installation On Linux

This document provides instructions for installing Oracle 10G on Red Hat Enterprise Linux 4. It involves creating an oracle user and groups, setting kernel parameters and limits in sysctl.conf, configuring the oracle user's environment variables for Oracle homes and SID, unzipping the Oracle installation files, and running the installer as the oracle user.

Uploaded by

arun
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 12

Oracle 10G Installation On RHEL 4

As ROOT user
 
#  groupadd oinstall

#  groupadd dba

#  useradd ­g oinstall ­G dba ­md /home/oracle10g oracle10g

#  passwd oracle10g

#  /proc/sys/kernel/echo 250 32000 100 128 > sem

kernel parameters:
#  vi  /etc/sysctl.conf
kernel.shmmax=2147483648
kernel.sem=250 32000 100 128
fs.file­max=65536
net.ipv4.ip_local_port_range=1024 65000

net.core.rmem_default=262144

net.core.rmem_max=262144

net.core.wmem_default=262144
net.core.wmem_max=262144

#  sysctl ­p

As ORACLE10G user

$  vi  .bash_profile

export ORACLE_BASE=/home/oracle10g
export ORACLE_HOME=$ORACLE_BASE/oracle/product/10.2.0/db_1
export ORACLE_SID=vguard
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
export PATH=$ORACLE_HOME/bin:$PATH

$ .  .bash_profile
$    unzip  Oracle10g­R2(10.2.0.1)database_linux_32bit.zip

$   cd /database

$   ./runinstaller

You might also like