oracle-10g安装

一/首先安装先决条件
binutils-2.15.92.0.2-13.EL4 

compat-db-4.1.25-9 

compat-libstdc++-296-2.96-132.7.2 

control-center-2.8.0-12 

gcc-3.4.3-22.1.EL4 

gcc-c++-3.4.3-22.1.EL44 

glibc-2.3.4-2.9 

glibc-common-2.3.4-2.9 

gnome-libs-1.4.1.2.90-44.1 

libstdc++-3.4.3-22.1 

libstdc++-devel-3.4.3-22.1 

make-3.80-5 

pdksh-5.2.14-30 

sysstat-5.0.5-1 

xscreensaver-4.18-5.rhel4.2 

setarch-1.6-1

libaio-0.3.103-3

libXp  (rhel5需要安装rhel4可以不要)

以上有些包rhel5下可能没有,可以不用管

二/#vi /etc/sysctl.conf
 
kernel.shmall = 2097152 
kernel.shmmax = 268435456 
kernel.shmmni = 4096 
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
 
#/sbin/sysctl -p

三/#vi /etc/security/limits.conf 
oracle           soft    nproc   2047 
oracle           hard    nproc   16384 
oracle           soft    nofile  1024 
oracle           hard    nofile  65536

四/
#mkdir /u01
#mkdir /u01/app
#mkdir /u01/app/oracle
#groupadd oinstall 
#groupadd dba  
#useradd -g oinstall -G dba -d /u01/app/oracle oracle 
#passwd oracle 
#chown -R oracle.oinstall /u01

五/
#xhost +

六/
#su - oracle
$ vi .bash_profile
TMP=/tmp;export TMP  
TMPDIR=$TMP;export TMPDIR  
ORACLE_BASE=/u01/app/oracle;export ORACLE_BASE  
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1;export ORACLE_HOME  
ORACLE_SID=orcl;export ORACLE_SID 
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH

$ source /u01/app/oracle/.bash_profile

七/
#su -
#tar -xvfz /tmp/10201_database_linux32.tar.gz

install software and create database
 
$./tmp/database/runInstaller

接下来的就是图形化的安装.........



下面的操作我并没有做,也没遇到什么问题
 
Edit the /etc/redhat-release file replacing the current release information 
(Red Hat Enterprise Linux Server release 5 (Tikanga)) with the following:redhat-4
 
vi /10201_database_linux32/database/install/oraparam.ini
Linux=redhat-3,SuSE-9,redhat-4,redhat-5,UnitedLinux-1.0,asianux-1,asianux

你可能感兴趣的:(oracle,oracle,安装,职场,休闲)