Redhat5.3安裝Oracle Database 10g Release2升級(jí)到10.2.0.4
--1.檢查軟件安裝情況
/*
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 這個(gè)裝不裝無(wú)所謂
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
*/
--2.OS參數(shù)要求vi /etc/sysctl.conf , 在行末添加以下內(nèi)容
#use for Oracle
kernel.shmall = 2097152
kernel.shmmax = 2147483648
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
再運(yùn)行sysctl -p應(yīng)用以上參數(shù)
--3.vi /etc/security/limits.conf 行末添加以下內(nèi)容
#use for oracle
* soft nproc 2047
* hard nproc 16384
* soft nofile 1024
* hard nofile 65536
--4.vi /etc/pam.d/login 行末添加以下內(nèi)容
session required pam_limits.so
--5.vi /etc/selinux/config 確保以下內(nèi)容
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
#SELINUXTYPE=targeted
SELINUXTYPE=disabled
--6.創(chuàng)建安裝Oracle的用戶及所屬組
#groupadd oinstall
#groupadd dba
#useradd -m -g oinstall -G dba oracle
#id oracle
為Oracle用戶設(shè)置密碼:
#passwd oracle
--7.創(chuàng)建安裝目錄mkdir -p /u01/oracle,這里習(xí)慣用root用戶建立
# mkdir -p /u01/oracle
# chown -R oracle.oinstall /u01/oracle
# chmod -R 775 /u01/oracle
# chmod -R 777 /u01 --必須對(duì)這個(gè)目錄有創(chuàng)建目錄的權(quán)限,因?yàn)閯?chuàng)建數(shù)據(jù)庫(kù)的過(guò)程中要在這個(gè)目錄創(chuàng)建一個(gè)目錄
--8.設(shè)置oracle用戶的.bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
ORACLE_BASE=/u01; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/oracle; export ORACLE_HOME
ORACLE_SID=orcl; export ORACLE_SID
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH
stty erase ^h
export LANG=en_US
export NLS_LANG=american_america.zhs16gbk
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
source .bash_profile使其生效
--9.設(shè)置主機(jī)名和ip
[root@localhost ~]# vi /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
192.168.143.66 RedHat dbserver --這是新加的
::1 localhost6.localdomain6 localhost6
保存后在終端運(yùn)行命令:
#hostname
是否主機(jī)名變成了mzl.net,如果沒(méi)有改變則要運(yùn)行以下命令
#service network restart
--10.設(shè)置Oracle10g支持RHEL5的參數(shù)
因?yàn)樵诠俜降腛racle10g是不支持RHEL5的,所以需要改變相關(guān)的參數(shù),不然在Oracle10g安裝前不能通過(guò)檢測(cè)!
網(wǎng)上有兩種更改的方法:(本人按照第一種方法安裝成功,,第二種安裝不能成功)
第一種:所以要修改版本說(shuō)明,編輯文件 /etc/redhat-release 把Red Hat Enterprise Linux Server release 5 (Tikanga) 改成版本4:
redhat-4
--11.上傳10201_database_linux32.zip到u01/oracle目錄并解壓
[root@redhat ~]# su - oracle
[oracle@redhat ~]$ cd /u01/oracle
[oracle@redhat oracle]$ ll -la
total 1683780
drwxrwxr-x 2 oracle oinstall 4096 Aug 21 13:38 .
drwxr-xr-x 3 root root 4096 Aug 21 13:33 ..
-rw-r--r-- 1 oracle oinstall 668734007 Aug 21 13:41 10201_database_linux32.zip
-rw-r--r-- 1 oracle oinstall 1053748381 Aug 21 13:43 p6810189_10204_Linux-x86.zip
[oracle@redhat oracle]$ unzip 10201_database_linux32.zip
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com